Question
Python FileNotFoundError
Hello,
We're having an issue trying to read a z/OS dataset. It works for a USS file. Running Python 3.95 in the base environment.
What are we missing?
thanks
# FileNotFoundError: [Errno 129] EDC5129I No such file or directory.
with open("//'xxxxxx.x.xxxxx'", 'r') as f:
print(f.read())
# this works
with open('/u/xxxxxx/python/aws.py', 'r') as f:
print(f.read())
We're having an issue trying to read a z/OS dataset. It works for a USS file. Running Python 3.95 in the base environment.
What are we missing?
thanks
# FileNotFoundError: [Errno 129] EDC5129I No such file or directory.
with open("//'xxxxxx.x.xxxxx'", 'r') as f:
print(f.read())
# this works
with open('/u/xxxxxx/python/aws.py', 'r') as f:
print(f.read())
Sign up
Already have an account? Login
Welcome to the Rocket Forum!
Please log in or register:
Employee Login | Registration Member Login | RegistrationEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.
