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
If logical_path is not a valid logical path...
logical_path
import os from irods.session import iRODSSession env_file = os.path.expanduser("~/.irods/irods_environment.json") ssl_settings = {} session = iRODSSession(irods_env_file=env_file, **ssl_settings) logical_path = '/{0.zone}/home/{0.username}/does_not_exist.txt'.format(session) local_file = 'should_not_exist.txt' session.data_objects.get(logical_path, local_file)
This should not create and leave a new empty should_not_exist.txt.
should_not_exist.txt
The text was updated successfully, but these errors were encountered:
Might just need to swap the order of these context managers...
python-irodsclient/irods/manager/data_object_manager.py
Lines 240 to 243 in edae459
Sorry, something went wrong.
No branches or pull requests
If
logical_path
is not a valid logical path...This should not create and leave a new empty
should_not_exist.txt
.The text was updated successfully, but these errors were encountered: