Hi,
When I was trying to read the CSV files using pandas I am getting an error which I have mentioned below.
df=pd.read_csv("/dbfs/FileStore/tables/badrecord-1.csv")
Error: FileNotFoundError: [Errno 2] No such file or directory: '/dbfs/FileStore/tables/badrecord-1.csv'
df=pd.read_csv("/FileStore/tables/badrecord-1.csv")
Error: FileNotFoundError: [Errno 2] No such file or directory: '/FileStore/tables/badrecord-1.csv'
Anyone, please tell me how to resolve the above error. thanks