I'm using the following databricks utilites (dbutils) command to copy files from one location to another as shown below:
dbutils.fs.cp('adl://dblake.azuredatalakestore.net/jfolder2/thisfile.csv','adl://cadblake.azuredatalakestore.net/landing/')
However, I want the file to be copied over only if no such file with the same name 'thisfile.csv' exists.
Can someone let me know whether is that possible?
If not, is there any other workaround?
