Maintain Folder Structure
I have a local folder structure, from which I'm uploading files to a remote server using
I would like to maintain the local folder structure and just upload the files and delete them (the files, not the folders) when done.
I'm running a VB.NET console app, and my put files is the following :
I've tried several combinations of
Thanks!
.Protocol = Protocol.Scp
I'm running a VB.NET console app, and my put files is the following :
transferResult = session.PutFiles("D:\remindererrors\", "remindererrors/", True, transferOptions)
\
, \*
but it always seems to delete the local folders.... Can anyone help with the correct syntax?
Thanks!