我想使用PowerShell命令删除特定文件夹中的文件,但是当我使用Remove-Item $DownloadFilePath* -recurs
(其中$DownloadFilePath
携带文件夹的路径)删除文件时,它会删除文件夹本身和其父文件夹中的文件。
请让我知道删除文件夹中文件的解决方案。
答案 0 :(得分:1)
这应该只删除$DownloadFilePath
:
Remove-Item $DownloadFilePath\* -Recurse
答案 1 :(得分:1)
如果您只想删除文件但不能使用子文件夹:
$DownloadFilePath = 'S:\Test\Folder'
Get-ChildItem -Path $DownloadFilePath -File -Recurse | Remove-Item