gpt4 book ai didi

powershell - 删除项目与 [System.IO.File]::Delete()

转载 作者:行者123 更新时间:2023-12-03 03:15:01 24 4
gpt4 key购买 nike

我在 Azure Runbook 中有以下代码:

$pathToDownloadedBlob = 'C:\depId-20150904032522\SevenZipSharp.dll'
if ((Test-Path $pathToDownloadedBlob) -eq $true)
{
try
{
Remove-Item -Path $pathToDownloadedBlob

}
catch
{
write-error "Could not delete $pathToDownloadedBlob. - $($error[0])"
exit
}
}

当我使用Remove-Item时,我收到此错误:

4/7/2015 2:14:14 PM, Error: Remove-Item : The converted JSON string is in bad format.
At DavidTest:45 char:45
+
+ CategoryInfo : InvalidOperation: (System.Unauthor... Boolean force):ErrorRecord) [Remove-Item],
InvalidOperationException
+ FullyQualifiedErrorId : JsonStringInBadFormat,Microsoft.PowerShell.Commands.RemoveItemCommand

当我使用 [System.IO.File]::Delete($using:path) 时,出现此错误:

4/7/2015 2:22:48 PM, Error: Exception calling "Delete" with "1" argument(s): "Access to the path 'C:\Deployment\SevenZipSharp.dll' is denied."
At DavidTest:46 char:46
+
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : UnauthorizedAccessException

我知道我没有删除该文件的权限。但是,当我使用 Remove-Item 时,为什么它会提示 JSON 字符串?

编辑:请注意,这只发生在 Azure 自动化中。但是,我无法真正在本地 Powershell ISE 中复制此内容,因为我有权删除我想要删除的文件。

<小时/>

更新:我刚刚意识到这只发生在 .dll 文件中。如果我尝试删除 .7z 文件,它工作正常。

最佳答案

我认为这是由于在 PowerShell 工作流上下文和 InlineScript 工作流事件之间传递的对象的序列化/反序列化造成的,默认情况下,InlineScript 工作流事件在单独的进程中运行。

您是否总是传入[System.String],或者有时传入[System.IO.FileInfo]对象?如果是后者,那么您可能需要引用 FullName 属性,而不是将对象本身传递给 Remove-Item

我不能 100% 确定这就是您遇到的情况,但值得讨论。

顺便说一句,作为最佳实践,请始终明确命名您的参数,以便其他人了解您在做什么。您对 Remove-Item 的调用不包含名称上的 -Path 参数,因为它的位置为 0。当然,这不是一件好事当你寻求帮助时,这是理所当然的。最好详细一点。

希望这至少有一点帮助。顺便问一下,这个问题是 Azure Automation Runbook 独有的,还是本地执行的 PowerShell 工作流中也存在?

编辑:这段代码似乎对我在本地工作得很好。

workflow test {
$Path = 'C:\dsc\srv01.xml';
InlineScript { Remove-Item -Path $using:Path; };
}

test

关于powershell - 删除项目与 [System.IO.File]::Delete(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29483729/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com