Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way of listing the contents of the local directory in ftp?

Tags:

ls

ftp

lcd changes local directories.

ls lists files on remote directory.

What I would like is lls, to list files on local directory.

Is this possible?

I know I can always open another terminal to do this, but I'm lazy!

like image 923
Jacko Avatar asked Mar 18 '10 02:03

Jacko


People also ask

How do I list the contents of a folder using FTP?

Use the ls command to list the contents of a directory on the FTP server. Use the dir command to list the contents of a remote directory to the window or to save the output to a local file. Use the lls command to list the contents of the current working directory of your PC or of another directory on the same drive.

Which FTP command is used to view the contents of a file directory items list more?

Reference article for the ftp dir command, which displays a list of directory files and subdirectories on a remote computer.


2 Answers

Yes:

!dir

The ! tells the client to run a local shell command. Tested this using both the Windows and Fedora default ftp clients. Note that the actual command may depend upon your OS, for example !ls may be necessary on other versions of Unix/Linux.


For what it's worth, the ! command is listed in the ftp client's help system:

ftp> help ! !               escape to the shell 
like image 192
Justin Ethier Avatar answered Sep 21 '22 18:09

Justin Ethier


To list files locally use following command

!dir 

Or use following command

!ls 

Note: ! means locally not the remote.

lcd is working but !cd will not work and lpwd is not working but !pwd is working.

like image 38
Chaminda Bandara Avatar answered Sep 21 '22 18:09

Chaminda Bandara