如何修复“指定的资源不存在。 HTTP状态码:404“使用Start-AzStorageFileCopy时出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修复“指定的资源不存在。 HTTP状态码:404“使用Start-AzStorageFileCopy时出错相关的知识,希望对你有一定的参考价值。
我正在尝试将文件从Azure存储资源管理器中的一个文件目录复制到源文件目录的子目录。
我最初想使用AZcopy来复制文件,但Azcopy不支持将文件复制到子目录。
所以现在我使用Start-AzStorageFileCopy cmdlet进入Powershell路由。
以下是我的完整脚本
$context = New-AzStorageContext -StorageAccountName "store1" -SasToken "?
sv=2015-12-11&si=aaa-15D97F9B09D&sr=s&sig=xxx"
# Since the file name has date, you can specify which date to be deleted.
# In this sample, we try to delete the files' name contains previous
datemonth string eg. "201901"
$pattern =[datetime]::Today.AddMonths(-2).ToString('yyyyMM')
$ShareName = "aaa"
$SourcePath = "Test/Temp_Clean_up_test_Folder"
$ArchivePath = "Test/Temp_Clean_up_test_Folder/Archive/"+
[datetime]::Today.AddMonths(-2).ToString('yyyyMM')
Get-AzStorageFile -ShareName "aaa" -Path "Test/Temp_Clean_up_test_Folder" -
Context $context | Get-AzStorageFile | where {($_.GetType().Name -eq
"CloudFile") -and ($_.Name -like "*$pattern*")} | Start-AzStorageFileCopy -
DestFilePath $ArchivePath -DestShareName "aaa" -SrcFile {$_} -DestContext
$Context
我希望文件复制,但我收到以下错误。
Start-AzStorageFileCopy:指定的资源不存在。 HTTP状态>代码:404 - HTTP错误消息:指定的资源不存在。在行:18 char:201 + ... ttern *“)} | Start-AzStorageFileCopy -DestFilePath $ ArchivePath -DestS> ... + ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:CloseError:(:) [Start-AzStorageFileCopy ],> StorageException + FullyQualifiedErrorId:> StorageException,Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet.StartAzur> eStorageFileCopyCommand
Start-AzStorageFileCopy:指定的资源不存在。 HTTP状态>代码:404 - HTTP错误消息:指定的资源不存在。在行:18 char:201 + ... ttern *“)} | Start-AzStorageFileCopy -DestFilePath $ ArchivePath -DestS> ... + ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:CloseError:(:) [Start-AzStorageFileCopy ],> StorageException + FullyQualifiedErrorId:> StorageException,Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet.StartAzur> eStorageFileCopyCommand
笔记:
目标目录已存在。
源文件存在(我在使用Start-azStorageFileCopy Cmdlet之前测试了输出)
我补充道
-DefaultProfile $Context
到脚本的末尾,希望这可以解决问题,但它返回相同的错误。
请尝试以下代码:
$context = New-AzStorageContext -StorageAccountName "xxx" -SasToken "xxx"
$pattern =[datetime]::Today.AddMonths(-2).ToString('yyyyMM')
$sharename = "aaa"
$sourcepath = "Test/Temp_Clean_up_test_Folder"
$archivepath = "Test/Temp_Clean_up_test_Folder/Archive/"+[datetime]::Today.AddMonths(-2).ToString('yyyyMM')
# add the following code to create the archive directory, if it does not exist.
# New-AzStorageDirectory -Context $context -ShareName $sharename -Path $archivepath
$files = Get-AzStorageFile -ShareName $sharename -Path $sourcepath -Context $context | Get-AzStorageFile | where {($_.GetType().Name -eq "CloudFile") -and ($_.Name -like "*$pattern*")}
foreach($s1 in $files){
Start-AzStorageFileCopy -SrcShareName $sharename -SrcFilePath (join-path $sourcepath $s1.name) -DestShareName $sharename -DestFilePath (join-path $archivepath $s1.name) -Context $context
}
请注意,在复制到存档路径之前,请确保存档路径存在。如果它不存在,您可以使用以下代码创建它:
New-AzStorageDirectory -Context $context -ShareName $sharename -Path $archivepath
以上是关于如何修复“指定的资源不存在。 HTTP状态码:404“使用Start-AzStorageFileCopy时出错的主要内容,如果未能解决你的问题,请参考以下文章