I will start off with saying that I am not a developer.
I have a folder structure that consists of sub folders named by date and each folder contains multiple .wav and .mp3 files with unique file names. I am trying to copy these files on a daily basis from our file server to a Blob storage, but only want a flat file structure on the blob storage and not all the sub folders. I have taken the "--recursive" out but I cannot find the syntax that would get azcopy to loop through the sub folders in the directory. Is this possible with azcopy:
azcopy copy "sourcefolders*" "blob storage with asa token" --include-pattern ".mp3;.wav" --overwrite=false
The connection works fine, but just cannot get the azcopy to loop through the large number of sub folders. I have tried the /s but then get an error about the incorrect number of arguments.