Advertisement
Guest User

powershell filename quoting

a guest
Oct 9th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. PS C:\temp\test> dir
  2.  
  3.  
  4. Directory: C:\temp\test
  5.  
  6.  
  7. Mode LastWriteTime Length Name
  8. ---- ------------- ------ ----
  9. -a--- 09/10/2015 13:31 0 a [b].txt
  10.  
  11.  
  12. PS C:\temp\test> foreach ($f in Get-ChildItem) { echo $f.FullName; Remove-Item -Path $f.FullName }
  13. C:\temp\test\a [b].txt
  14. PS C:\temp\test> dir
  15.  
  16.  
  17. Directory: C:\temp\test
  18.  
  19.  
  20. Mode LastWriteTime Length Name
  21. ---- ------------- ------ ----
  22. -a--- 09/10/2015 13:31 0 a [b].txt
  23.  
  24.  
  25. PS C:\temp\test>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement