Understood.
1.
Putting out:
%R%\winscp.com /command ^
"open
ftp://Username:Password@ftp.thehunterma ... ublic_html" ^
"put ""%MyPath%""" ^
"exit"
Getting:
%R%\winscp.com /command ^
"open
ftp://Username:Password@ftp.thehunterma ... ublic_html" ^
"get Tictactoe.bat" ^
"exit"
------explination-----
As some free and paid ftp servers demand to put all files in a folder, this helps as with the native windows one cannot specify a folder from the ftp server, nor recieve ftp files(to my knoledge, I cant use it because my windows xp cannot run the native one properly). Also, this is from my game and it works.
2.
From a website(tested it, it works but keeps window open and doesnt actually upload it):
@echo off
echo user MyUserName> ftpcmd.dat
echo MyPassword>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo put %1>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat SERVERNAME.COM
del ftpcmd.dat
-----Explination-----
It doesnt work aka. when i use it it does not give the file, as it finishes and keeps cmd open(have to x it out). When i check the file, it is not there.
3.
Say, you are making a server for your game.
For testing, you will like to check the file or delete it if you messed up or just to edit it.
But using the native one you will need to send for a long time (and you cant even recieve or delete the file!) for testing.
But with this Winscp exe you can log in without having to go to the website.
Its fast, and simple. And if you want you can even put the ftp on your desktop and save the password!
-----Explination-----
Log in to your account, then you can create folders, add files to ftp, delete files on ftp, obtain files from ftp, edit files from ftp, and much more. check it out.
4.
Again if you want to upload the server, if it is big (or any size) you will want to see how long it takes or the progression bar.
using the command, it shows the procent loaded.
-----Explination-----
Do i even need one? It shows the progression and if it connects to the server.
+
This is really handy in a gamelike batch file. It does not freeze, glitch(if you do it properly), and (dare I say) better than the native ftp("really, does external programs have nothing we dont like?").
Any more info needed or a better explination needed you know where to post!