We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fs = AzureDLFileSystem(token=auth_token store_name="mylake") fs.rename( AzureDLPath("folder1/some_file.txt"), AzureDLPath("folder2/some_file.txt") )
does not work, an exception raised azure.datalake.store.exceptions.DatalakeRESTException: Operation failed: RENAME, folder1/some_file.txt
azure.datalake.store.exceptions.DatalakeRESTException: Operation failed: RENAME, folder1/some_file.txt
It works only in the case of renaming of the file name (not folders)
fs = AzureDLFileSystem(token=auth_token store_name="mylake") fs.rename( AzureDLPath("folder1/some_file.txt"), AzureDLPath("folder1/some_file_renamed.txt") )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
does not work, an exception raised
azure.datalake.store.exceptions.DatalakeRESTException: Operation failed: RENAME, folder1/some_file.txt
It works only in the case of renaming of the file name (not folders)
The text was updated successfully, but these errors were encountered: