Ftp Shell Extension For Windows

liunx

Guest
Does anyone know of a little app/tool that adds a feature where you can right click on a file and send to an ftp server (specific folder). <br /><br /><br />Someone told me how to make a bat file while using the windows pre-existing ftp client. It works fine, but I'm looking for something a little more attractive and intuitive. <br /><br /><b>These are the instructions on how to get this to work.</b><br />This will be your bat file (ftpupload.bat) Put your hostname where it say "ftpHostname"<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->@echo off<br />type cmds.org > cmds.txt<br />echo %1 >> cmds.txt<br />echo quit >> cmds.txt<br />call ftp -s:cmds.txt ftpHostname<br />del cmds.txt<br />pause<!--c2--></div><!--ec2--><br /><br />This will be just a file where the commands are held. (cmds.org) Specify your "ftpUsername" and "ftpPassword". Make sure and change the cds to point to the actual directory you want. <br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->ftpUsername<br />ftpPassword<br />cd public_html<br />cd images<br />bin<br />put<!--c2--></div><!--ec2--><br /><br />Now put this into one directory and then create a shortcut to the batfile. Now goto Start>Run Type sendto and put that shortcut you just made into this folder. <br /><br />Ok, finally done. Yea yea, I know its a lot of work, but thats why I made this thread. To discuss any other alternatives.<!--content-->
You can try "SendTo FTP". I use WS_FTP Pro for my ftp client, which includes this feature and work much better than "SendTo FTP". It only takes a few clicks and you can choose from any site stored in WS_FTP.<!--content-->
<!--QuoteBegin-section31+Apr 13 2005, 05:08 AM--><div class='quotetop'>QUOTE(section31 @ Apr 13 2005, 05:08 AM)</div><div class='quotemain'><!--QuoteEBegin-->Does anyone know of a little app/tool that adds a feature where you can right click on a file and send to an ftp server (specific folder).  <br /><br /><br />Someone told me how to make a bat file while using the windows pre-existing ftp client.  It works fine, but I'm looking for something a little more attractive and intuitive.  <br /><br /><b>These are the instructions on how to get this to work.</b><br />This will be your bat file (ftpupload.bat) Put your hostname where it say "ftpHostname"<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->@echo off<br />type cmds.org > cmds.txt<br />echo %1 >> cmds.txt<br />echo quit >> cmds.txt<br />call ftp -s:cmds.txt ftpHostname<br />del cmds.txt<br />pause<!--c2--></div><!--ec2--><br /><br />This will be just a file where the commands are held.  (cmds.org)  Specify your "ftpUsername" and "ftpPassword".  Make sure and change the cds to point to the actual directory you want.  <br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->ftpUsername<br />ftpPassword<br />cd public_html<br />cd images<br />bin<br />put<!--c2--></div><!--ec2--><br /><br />Now put this into one directory and then create a shortcut to the batfile.  Now goto Start>Run  Type sendto and put that shortcut you just made into this folder.  <br /><br />Ok, finally done.  Yea yea, I know its a lot of work, but thats why I made this thread.  To discuss any other alternatives.<br /><div align="right"><a href="http://www.totalchoicehosting.com/forums/index.php?act=findpost&pid=124560"><img src='http://www.totalchoicehosting.com/forums/style_images/1/post_snapback.gif' alt='*' border='0' /></a></div><!--QuoteEnd--></div><!--QuoteEEnd--><br /><br />CuteFTP also has shell integration.<br />I've been having a problem with it lately though of not remembering my binary/ascii upload settings.. keeps trying to upload cgis as binary and jpgs as ascii!<br /><br />if you connect using windows explorer one time, it will add it to your 'network places' and treat it like any other folder/drive.<!--content-->
both cuteftp and wsftp support this. Wow, I've been using smartftp for years now and I'm surprised to see that they don't even have this feature.<br /><br />Thanks, i'll check those 2 ftp clients out.<!--content-->
 
Top