Hi All
I'm trying to copy the whole training directory (which contains multiple sub folders and files) from my catalog volume area to each users area.
From : "dbfs:/Volumes/CatalogName/schema/Training"
To : "dbfs:/Workspace/Users/username@domain.com/Training/"
I tried using
1) dbutils.fs.cp(sourcePath , destPath, recursive=true)
Its says it successfully copied but inside the UI its not visible , If I run the ls command , I can see the files and folders.
2) I also tried using the put API /api/2.0/dbfs/put
its the same it says it successful but the files are not visible in the UI.
Is there a way other than UI, because need to copy the folders to 50 users area ? Can't do it manually.