Anonymous
Not applicable

@Govardhana Reddy​ : You can use the dbutils.fs.ls() command to get the source path in Databricks.

dbutils.fs.ls("dbfs:/path/to/source/directory")

Make sure to replace "/path/to/source/directory" with the actual path to the source directory you want to check. This command will return a list of file information objects that includes the name, path, size, and modification time of each file in the directory. You can use this information to verify that the source files are located in the correct directory.

View solution in original post