A Run window should appear.
A Command window should appear.
Example: cd c:\folder_name\folder_name2
The Command window will display a prompt for your user ID.
Once logged in, the prompt will change from your computer directory to: ftp>
| Command | Function | ||
| put file_name.ext | puts a copy of the file: file_name.ext into the directory you changed to in the line before. -- In our example it was the public_html folder. | ||
| mput * | puts a copy of all of the files from the directory on your computer that you specified at the beginning of the command window, -- in our example it was c:\folder_name\folder_name2, -- into the directory you changed to in the line before -- In our example it was the public_html folder. | ||
| get file_name.ext | gets a copy of the file: file_name.ext from the directory you changed to in the line before. -- In our example it was the public_html folder, -- and places it in the directory on your computer that you specified at the beginning of the command window, -- in our example it was c:\folder_name\folder_name2. | ||
| mget * | gets a copy of all of the files from the directory you changed to in the line before -- in our example it was the public_html folder -- and places them into the directory on your computer that you specified at the beginning of the command window, -- in our example it was c:\folder_name\folder_name2. |
| Command | Function | ||
| bin | If you are experiencing problems with the way an image file is being transferred. Type in this command and then hit enter and then try again using one of the three transfer commands above. What this command is doing is giving more information about the way the file should be transfered. In this case you're telling the computer to transfer it in binary mode. | ||
| ascii | If you are experiencing problems with the way a text file is being transferred. Type in this command and then hit enter and then try again using one of the three transfer commands above. What this command is doing is giving more information about the way the file should be transfered. In this case you're telling the computer to transfer it in ASC II mode. | ||
| lcd c:\other_folder_name | This command changes the directory on your local machine that you are working with -- For our example, this would change the directory of c:\folder_name\folder_name2 to the directory of c:\other_folder_name. -- Now all of the file transfers will occur between the gateway computers and the files located in c:\other_folder_name |