Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2023 04:56 PM
@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.