cd = Change directory. example cd directory-name cd directory-name/other-dir/other-dir if path have space you need to use " cd "directory name" cd "directory name/other-dir/other-dir" cwd same cd example cwd directory-name cwd directory-name/other-dir/other-dir if path have space you need to use ["] cwd "directory name" cwd "directory name/other-dir/other-dir" delete Delete a file. example delete file-name delete directory-name/filename if path have space you need to use ["] delete "directory name/file name" mdel delete a list of files example mdel *.txt mdel directory-name/*.txt if path have space you need to use ["] mdel "directory name/*.txt" dir Lists the contents of the remote directory. Includes files and subdirectories. example dir dir *.txt dir directory-name/*.txt if path have space you need to use ["] dir "directory name/*.txt" get Get a single file from remote server/computer. Copies file to local computer. example get filename get remote-directory/filename if path have space you need to use ["] get "remote directory/filename" ls List file names in the current remote directory. example ls ls *.txt same command dir but have minor details mget Copy multiple and single files from the remote system to the local computer. example mget filename mget *.txt mget remote-directory/filename mget remote-directory/*.txt if path have space you need to use ["] mget "remote directory/filename" mget "remote directory/*.txt" can add local directory mget *.txt \local-directory mkdir Make a new directory within the current remote directory. example mkdir new-directory-name if path have space you need to use ["] mkdir "new directory name" mput Send multiple and single files from local computer to remote system. mput local-filename mput *.txt mput local-directory/filename mput local-directory/*.txt if path have space you need to use ["] mput "local directory/filename" mput "local directory/*.txt" can add remote directory mput *.txt /remote-directory mput *.txt "/remote directory" put Send single file to remote server/computer. example put filename put local-directory/filename if path have space you need to use ["] put "local directory/filename" can add remote directory put filename /remote-directory put filename "/remote directory" pwd Show pathname of current directory. quit Exit FTP environment. rmdir Remove directory on the remote server/computer. example rmdir directory-name rmdir directory-name/other-dir/other-dir if path have space you need to use ["] rmdir "directory name" rmdir "directory name/other-dir/other-dir" connect connect to ftp example connect 192.168.1.100 connect 192.168.1.100:65000 without :[port number] use the default ftp port 21 user specify the ftp user example after connect user user-to-login pass specify the password for ftp user example after connect and user pass P4ssW0rd passive ON|OFF enable o disable passive mode example passive on passive off rmd remove directory to server ftp example rmd directory-name rmd directory-name/other-dir/other-dir if path have space you need to use ["] rmd "directory name" rmd "directory name/other-dir/other-dir" syst return the system of ftp-server example syst return 215 UNIX emulated by FileZilla rnfr specify file name to rename follow to command rnto with new file name example rnfr existing-filename rnto new-file-name bye Exit FTP environment. example bye exit to application