标签: powershell
我有一个包含文件路径和文件名(以及其他一些字段)的csv。如何使用文件中的路径删除目录中的文件?
答案 0 :(得分:1)
您需要导入该文件并使用Remove-Item cmdlet。假设您有一个名为“Path”的列,其中包含文件的完整路径:
Remove-Item
Import-Csv .\files.Csv | Foreach-Object{ Remove-Item -LiteralPath $_.Path -Force }