Add-PnPFile -Path <blob storage path> #1775
-
Is there a way to pass a blob storage URI into the -Path parameter for the Add-PnPFile command? I have working code that will read from a local path but would like to connect it to blob storage. I have setup the AzStorageContext and verified that the file exists within the script. When I pass the blob uri into -Path I get a 'Local File was not Found' message. Am I missing something or is this not supported at the moment? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I usually just save the files from the storage account to a temp dir that I clean up afterwards. |
Beta Was this translation helpful? Give feedback.
I usually just save the files from the storage account to a temp dir that I clean up afterwards.
This approach works for Runbooks as well