View previous topic :: View next topic |
Author |
Message |
Suchay Beginner
Joined: 29 Jun 2017 Posts: 43 Topics: 9
|
Posted: Mon Jul 17, 2017 4:21 pm Post subject: FTP to a shared drive with spaces in folder Name? |
|
|
Hi
While trying to FTP a mainframe data set to a drive where folder has two names with space in between i.e. space between three four and five six,
Code: |
CD /first/second/three four/five six
PUT 'MAINFRAME DATASET' FTPFILE.TXT
QUIT
/* |
FTP job failed with below error Code: |
550folder path The system cannot find the path
EZA1735I Std Return Code = 07550, Error Code = 00002
EZA1701I >>> QUIT |
Please advise |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12373 Topics: 75 Location: San Jose
|
Posted: Mon Jul 17, 2017 5:44 pm Post subject: |
|
|
Suchay,
Enclose the directory name with spaces in quotes
ie. change
Code: |
CD /first/second/three four/five six
to
CD "/first/second/three four/five six"
or
CD /first/second/"three four"/"five six"
|
_________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
Suchay Beginner
Joined: 29 Jun 2017 Posts: 43 Topics: 9
|
Posted: Tue Jul 18, 2017 10:23 am Post subject: |
|
|
Thanks Kolusu, issue was we didn't have access to folder. |
|
Back to top |
|
|
|
|