Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Connection to FTP Server

Former Member
0 Kudos
115

Hi All,

I am trying to get the data from FTP server.

The path in the server is /NAUSP1/30-DRY-RUN/04-DELIVER/Quality/text.xls

Can any one please let me know the command to Navigate to the path and pick up the file.

I tried using the command "lcd /NAUSP1/30-DRY-RUN/04-DELIVER/Quality/", but it is not working.

Please help me on this.

Priyanka

Edited by: Priyanka Neelam on Jul 14, 2009 8:17 AM

3 REPLIES 3

Former Member
0 Kudos
76

Hi,

lcd /NAUSP1/30-DRY-RUN/04-DELIVER/Quality/

Change to

cd /NAUSP1/30-DRY-RUN/04-DELIVER/Quality/,  " It is not lcd - it is cd

Former Member
0 Kudos
76

Hi,

lcd over here is Local Directory which is your computers local directory.

Instead of using lcd command use cd command or chdir which changes the directory to the path you have mentioned and use get command to pick the file from the FTP server.

Regards

Sarves

Former Member
0 Kudos
76

thanks