使用PowerShell命令删除文件或文件夹

时间:2014-10-07 06:55:34

标签: powershell

我想使用PowerShell命令删除特定文件夹中的文件,但是当我使用Remove-Item $DownloadFilePath* -recurs(其中$DownloadFilePath携带文件夹的路径)删除文件时,它会删除文件夹本身和其父文件夹中的文件。 请让我知道删除文件夹中文件的解决方案。

2 个答案:

答案 0 :(得分:1)

这应该只删除$DownloadFilePath

的内容
Remove-Item $DownloadFilePath\* -Recurse

答案 1 :(得分:1)

如果您只想删除文件但不能使用子文件夹:

$DownloadFilePath = 'S:\Test\Folder'
Get-ChildItem -Path $DownloadFilePath -File -Recurse | Remove-Item