如何在说 x 天后定期从 azure 文件共享中删除文件?
Posted
技术标签:
【中文标题】如何在说 x 天后定期从 azure 文件共享中删除文件?【英文标题】:How to delete from files from azure file share periodically after say x days? 【发布时间】:2021-09-30 16:00:57 【问题描述】:Azure 存储包含 4 个主要数据存储组件:容器、文件共享、队列和表。 要定期删除容器中的文件:我们有(Blob(容器)的存储生命周期管理)https://docs.microsoft.com/en-us/azure/storage/blobs/storage-lifecycle-management-concepts?tabs=azure-portal。此外,关于 SO 和文档的许多问题仅与 azure blob 相关。
但我找不到 Azure 文件共享。到目前为止,我可以看到 2 种方法:使用存储帐户的凭据运行 cron 作业并定期删除文件共享中的文件,或者启动逻辑应用以删除旧文件。
我们有没有更简单的方法在 azure 文件共享中执行此操作,尤其是像我们为 blob 提供的生命周期管理之类的方法,或者这两种方法是唯一的方法吗?
【问题讨论】:
目前没有针对 Azure 文件的生命周期管理。您将不得不选择上面提到的两种方法之一。您可以为此使用Timer Triggered Function
或Timer Triggered Logic App
。
【参考方案1】:
正如@Gaurav Mantri 所说,目前没有针对 Azure 文件的生命周期管理。
您可以按照以下步骤来实现您的要求
您可以创建一个时间触发的函数应用。
参考:https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-scheduled-function
然后使用下面的 az cli 脚本删除文件共享内容。
(本例删除了过去90天内未修改的文件,可根据需要更改)
$myshare = "<<Share Name>>"
$accountName = "<<Storage Account Name>>"
$accountKey = "<<Storage Account Access Key1>>"
$filelist = az storage file list -s $myshare --account-name $accountName --account-key $accountKey
$fileArray = $filelist | ConvertFrom-Json
foreach ($file in $fileArray | Where-Object $_.properties.lastModified.DateTime -lt ((Get-Date).AddDays(-90)))
$removefile = $file.name
if ($removefile -ne $null)
Write-Host "Removing file $removefile"
az storage file delete -s $myshare -p $removefile --account-name $accountName --account-key $accountKey
【讨论】:
以上是关于如何在说 x 天后定期从 azure 文件共享中删除文件?的主要内容,如果未能解决你的问题,请参考以下文章
当文件上传到 azure 文件共享时,如何添加触发器以将文件从 azure 文件共享移动到 azure blob?
如何从 Azure DevOps Pipeline 读取 Azure 文件共享文件