Hi! From a Databricks job, i want to copy a workspace file into volume. how can i do that?
I tried
`dbutils.fs.cp("/Workspace/path/to/the/file", "/Volumes/path/to/destination")`
but got
Public DBFS root is disabled. Access is denied on path: /Workspace/path/to/the/file
Is this the recommended way to put file into Volume? prefer not to go with the API way for now.