I am trying to deploy a zip file to a specific folder within a webapp, but I want to make sure that folder is empty.
this is my command:
az webapp deploy
--resource-group $(ResourceGroup)
--name $(AppName)
--src-path $zip_artifact
--type zip
--target-path Document_Path
--clean false
If I use Clean True, it clean entire root of the app (including outside of Document_Path)
Is there another way to clean just a folder?