This user guide shows how to upload your own data onto the DASH Platform and move it across into your own lab zone folder.
This will copy a file from one folder to another
dbutils.fs.cp('<pathname>', '<pathdestination>')
This will copy a folders contents to another folder
dbutils.fs.cp('<pathname>', '<pathdestination>', True)
This will move a file from one folder to another
dbutils.fs.mv('<pathname>', '<pathdestination>')
This will move a folders contents to another folder
dbutils.fs.mv('<pathname>', '<pathdestination>', True)