I'm trying to delete all files from an Azure Storage File share and exclude one specific file name. I just can't figure out the pattern.
I've tried this but the pattern doesn't match anything now.
az storage file delete-batch --source "https://myst.file.core.windows.net/myshare" --sas-token $sastoken --pattern "[!importantfile.py]"
You need to add the pattern parameter in single quotes as shown in the below
If you have similar files in the file share like (test.json.test1.json) ,using
az storage delete-batch with pattern filter wont be possible to exclude the deletion of a particular file.
Reference SO thread how to use pattern in the az storage blob delete-batch
Alternatively, if want a particular file to be excluded from deletion in file share you can use the below power shell script