Suppose I have this structure on the server:
C:/mydata/uploads C:/mydata/realuploads13334349342h
I have an FTP account that is pointed to C:/mydata/uploads. That means when I access to that FTP acccount the root is: C:/mydata/realuploads
However, we want to use FTP client with .NET to upload files to the folder: C:/mydata/realuploads13334349342h. Is it possible that when the user detects our ftp account, he use an ftp client such as: FlashFXP and he found nothing there. But from the FTP client, can we set the remote path to: C:/mydata/realuploads13334349342h
FtpClient ftpclient = new FtpClient();
ftpclient.RemotePath = "//realuploads13334349342h";
Is there Something like that with FtpClient?
Thanks in advance.