I'm creating a winform app and i'm trying to copy a folder and its content to the same directory on the FTP server (duplicate it) so for example let's say the FTP server folder now look like:
FTP://.../Main/temp/a.txt
FTP://.../Main/temp/b.txt
After the duplication of 'temp' folder 'Main' folder should look like:
FTP://.../Main/temp/a.txt
FTP://.../Main/temp/b.txt
FTP://.../Main/NewDir/a.txt
FTP://.../Main/NewDir/b.txt
I wonder what is the best way to do this? Thanks!