FtpDLX GetFile needs LocalPath (wodSFTP / wodSFTP.NET / wodSFTPdll)
I am using code with the demo library that looks like the following.
[code]
FtpDLX Ftp1 = new FtpDLX();
...
MemoryStream ms = new MemoryStream(20 * 1024);
Ftp1.LocalPath= . ;
Ftp1.GetFile(ms, var);
[/code]
The above code should not require a local path given
that it is writing to memory.
However if the LocalPath is not set than an exception
is thrown saying that the LocalPath must be set.
I want to verify that it is not writing to the file system
even temporarily.
Complete thread:
- FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 22:18
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 22:43
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 22:53
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 22:58
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 23:02
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 23:06
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 23:19
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-02, 00:08
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-02, 00:42
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-02, 00:08
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 23:19
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 23:06
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 23:02
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 22:58
- Re: FtpDLX GetFile needs LocalPath - jschell, 2006-06-01, 22:53
- Re: FtpDLX GetFile needs LocalPath - wodSupport, 2006-06-01, 22:43