Hi,I have the following environment:- Win7 / 64- .NET 3.5- MPC-Target :OpenSSH_6.0p1, OpenSSL 1.0.0j 10 May 2012- SSH.NET commit 19813I want to upload a directory structure (recursive, depth = 2) from the PC to a MPC basedLinux remote system. The total amount of data is about 8MB with 23 files from55 bytes to 4MB.Calling mScp.Upload(new DirectoryInfo(localDir), remoteDir) does not result anyerror and the Uploading event shoes uploading all files. But after Upload() returnedThere are a random number of missing files on the target (between 1 and 5).It tried the same with a PC based Linux as target what resulted in the same behaviour(OpenSSH_5.8p1 Debian-7ubuntu1, OpenSSL 1.0.0e 6 Sep 2011). It seems theproblem is caused anywhere within SSH.NET.Does anyone have a solution?Extension:I tried to workaround by replacing Upload(new DirectoryInfo(...)) by several singlecalls of Upload(new FileInfo(...)). This worked but is too slow for my application.
Comments: ** Comment from web user: Schmid **
Comments: ** Comment from web user: Schmid **
Gert,
I'm integrating the fixed version (Rev 41002) of
public void Upload(DirectoryInfo directoryInfo, string path);
into my target project now.
My local directory (copy source) has the same name as the remote directory
(copy target).
Is it the intended behaviour that
* If the remote directory does not exist yet then it will be created by Upload().
The files of the local directory will be uploaded into the new directory.
==> OK
* But if the remote directory exists then a new subdirectory with the same name
will be created by Upload() and the files of the local directory will be uploaded
into that new subdirectory.
==> Not OK in my opinion.
Yours
Ulrich