

InterviewSolution
Saved Bookmarks
1. |
Solve : FTP File Transfer? |
Answer» <html><body><br/> Hi to all<br/><br/> i want make one batch file that connect to the ftp like 192.168.100.99 with username & password <br/> & then i transfer one text file <a href="https://interviewquestions.tuteehub.com/tag/form-240719" style="font-weight:bold;" target="_blank" title="Click to know more about FORM">FORM</a> client %temp% to ftp folder. Code: <a>[Select]</a>C:\>ftp -h<br/><br/>Transfers files to and from a computer running an FTP server service<br/>(sometimes called a daemon). Ftp can be used interactively.<br/><br/>FTP [-v] [-d] [-i] [-n] [-<a href="https://interviewquestions.tuteehub.com/tag/g-11801" style="font-weight:bold;" target="_blank" title="Click to know more about G">G</a>] [-s:filename] [-a] [-w:windowsize] [-A] [host]<br/><br/> -v Suppresses display of remote server responses.<br/> -n Suppresses auto-login upon initial connection.<br/> -i Turns off interactive prompting during multiple file<br/> transfers.<br/> -d Enables debugging.<br/> -g Disables filename globbing (see GLOB command).<br/> -s:filename Specifies a text file <a href="https://interviewquestions.tuteehub.com/tag/containing-2035611" style="font-weight:bold;" target="_blank" title="Click to know more about CONTAINING">CONTAINING</a> FTP commands; the<br/> commands will automatically run after FTP starts.<br/> -a Use any local interface when binding data connection.<br/> -A login as anonymous.<br/> -w:buffersize Overrides the <a href="https://interviewquestions.tuteehub.com/tag/default-244456" style="font-weight:bold;" target="_blank" title="Click to know more about DEFAULT">DEFAULT</a> transfer buffer <a href="https://interviewquestions.tuteehub.com/tag/size-246425" style="font-weight:bold;" target="_blank" title="Click to know more about SIZE">SIZE</a> of 4096.<br/> host Specifies the host name or IP address of the remote<br/> host to connect to.<br/><br/>Notes:<br/> - mget and mput commands take y/n/q for yes/no/quit.<br/> - Use Control-C to abort commands.</body></html> | |