有人知道Remove-Item
在Delete
工作时会失败的原因吗?
在下面的脚本中,我得到了一个我想删除的文件列表
使用Remove-Item
我收到以下错误消息:
VERBOSE:在目标上执行“删除文件”操作 “\\ UncPath \文件夹\ TEST.RTF”。删除项目:无法删除项目 \\ UncPath \ Folder \ test.rtf:拒绝访问路径。
但正在使用Delete
删除这些文件。
脚本
$files = gci \\UncPath\Folder| ?{ $_.LastWriteTime -le (Get-Date).addDays(-28) }
# This doesn't work
$files | Remove-Item -force -verbose
# But this does
$files | % { $_.Delete() }
答案 0 :(得分:7)
cd c:
test-path \\127.0.0.1\c$
返回TRUE
cd HKCU:
test-path \\127.0.0.1\c$
返回FALSE
在指定完整路径时,我们告诉powershell使用文件系统提供程序,这解决了问题。您还可以指定提供商,例如remove-item filesystem::\\uncpath\folder
答案 1 :(得分:2)
我终于可以重复这个和IMO这似乎是一个错误。 repro是拥有像C $这样的开放共享,但是为文件上的用户设置拒绝修改权限。当我这样做时,我会注意到这一点:
PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | ri -for
ri : Cannot remove item \\Keith-PC\C$\Users\Keith\foo.txt: Access to the path is denied.
At line:1 char:43
+ gci '\\Keith-PC\C$\Users\Keith\foo.txt' | ri -for
+ ~~~~~~~
+ CategoryInfo : InvalidArgument: (\\Keith-PC\C$\Users\Keith\foo.txt:FileInfo) [Remove-Item], ArgumentExc
eption
+ FullyQualifiedErrorId : RemoveFileSystemItemArgumentError,Microsoft.PowerShell.Commands.RemoveItemCommand
PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Delete()} # <== this works!
我还观察到删除-Force
参数也会删除文件而不会出错。拒绝权限仍然允许我从Windows资源管理器中删除该文件,这使我相信该文件应该删除。那么使用-Force
参数怎么样呢?当我深入研究ErrorRecord时,我看到了这一点:
Message : Access to the path is denied.
ParamName :
Data : {}
InnerException :
TargetSite : Void set_Attributes(System.IO.FileAttributes)
StackTrace : at System.IO.FileSystemInfo.set_Attributes(FileAttributes value)
at Microsoft.PowerShell.Commands.FileSystemProvider.RemoveFileSystemItem(FileSystemInfo
fileSystemInfo, Boolean force)
似乎-Force
参数试图设置(更可能是 reset )属性,并且文件的权限不允许它,例如:
PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Attributes = 'Normal'}
Exception setting "Attributes": "Access to the path is denied."
At line:1 char:45
+ gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Attributes = 'Normal'}
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], SetValueInvocationException
+ FullyQualifiedErrorId : ExceptionWhenSetting
所以在我看来,PowerShell首先应该尝试-Force
不存在,如果失败,请尝试重置属性。