I've found a couple of examples for moving a
file on a FTP server to another location but
all of them required something like this.
char[] command = "PASV\r\n".ToCh arArray();
Byte[] cmd = Encoding.ASCII. GetBytes(comman d);
ftpSocket.Send( cmd, cmd.Length, 0);
readResponse();
Is that neccessary or can i do remote, FTP
file management using e.g. FtpWebRequest
class? If so, how?
--
Regards
Konrad Viltersten
----------------------------------------
May all spammers die an agonizing death;
have no burial places; their souls be
chased by demons in Gehenna from one room
to another for all eternity and beyond.
file on a FTP server to another location but
all of them required something like this.
char[] command = "PASV\r\n".ToCh arArray();
Byte[] cmd = Encoding.ASCII. GetBytes(comman d);
ftpSocket.Send( cmd, cmd.Length, 0);
readResponse();
Is that neccessary or can i do remote, FTP
file management using e.g. FtpWebRequest
class? If so, how?
--
Regards
Konrad Viltersten
----------------------------------------
May all spammers die an agonizing death;
have no burial places; their souls be
chased by demons in Gehenna from one room
to another for all eternity and beyond.
Comment