gpt4 book ai didi

powershell - 检查 BlobStorage 中以 Powershell 中的字符串开头的文件名

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

我目前正在使用 Powershell 脚本来管理 Windows-Azure 中的 BlobStorage 内容。我想要一个脚本来读取文本文件的内容并显示 BlobStorage 中以此内容开头的文件名称。我正在寻找一个通配符搜索,列出 BlobStorage 中的名称,该名称以文本文件中指定的内容开头。

我想到了一个循环,该循环搜索文本文件中的每一行,并在 BlobStorage 中查找以文本文件中指定内容开头的文件名。

*如果文本文件中有 2 行:*

43345-sdfssd-42342-sdfsf

32423-asdsad-23424-dghfs

BlobStorage 中的文件名是:

43345-sdfssd-42342-sdfsf-250.PNG

43345-sdfssd-42342-sdfsf-650.PNG

92323-asadad-12342-sdfds-1600.PNG

我想将文本文件中的 ID 与 BlobStorage 文件的名称进行比较,并显示 BlobStorage 中包含此 ID 的所有文件的完整文件名。

为了进一步说明这一点,这是我的假设:

foreach (ID in textfile) 
{

files = find files in BlobStorage with name that starts with ID (ListBlobsWithPrefix?)

foreach (textfile in files)
{
Write filename to console
}

}

到目前为止,我已经成功连接到我的 blob 存储并且它可以工作,我可以在图像容器中列出 Blob 的名称。我已经检查过读取文本文件并将内容打印到控制台是否一切正常。我没能做到的是将文本文件 ID 与 BlobStorage 中 Blob 的文件名进行比较,并在 BlobStorage 中打印以 ID 开头的结果。我尝试了很多解决方案,但没有成功。

到目前为止,我已经想出了这段代码:

#Make a connection to my BlobStorage
$SAN = "XX"
$SAK="X"

$creds = New-Object Microsoft.WindowsAzure.StorageCredentialsAccountAndKey($SAN, $SAK)
$client = New-Object Microsoft.WindowsAzure.StorageClient.CloudBlobClient("https://$SAN.blob.core.windows.net",$creds)

$bro = New-Object Microsoft.WindowsAzure.StorageClient.BlobRequestOptions
$bro.UseFlatBlobListing = $true

#Add $images blobcontainer and use flatbloblisting to list blobnames
$imagecontainer = $client.GetBlobDirectoryReference("images")
$images = $imagecontainer.ListBlobs($bro)

#Add textfile and assign it to a variable
$InputFile = Get-Content C:\transcript\hej.txt

#Loop to find everything in the input file and compare it to matching filenames in blobstorage. Return filenames that starts with the ID/contains the ID in the inputfile.
foreach ($ID in Get-Content $InputFile) {

感谢进一步的帮助/解决方案。

最佳答案

免责声明:我没有使用 Azure 的经验,但快速浏览一下 MSDN 文档让我相信这会起作用:

foreach ($ID in $InputFile)
{
$image_matches = $images | Where-Object {$_.Name -match '^$ID'}

# process matching images here
}

关于powershell - 检查 BlobStorage 中以 Powershell 中的字符串开头的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13158716/

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