Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: session.GetFiles delete the files when flag is False

Please attach a full session log file showing the problem (using the latest version of WinSCP).

To generate the session log file, set Session.SessionLogPath. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.
GayathriJ

session.GetFiles delete the files when flag is False

Hello everyone,

I am using 5.7.7.0 version of winSCPnet dll. Below lines of code I am using to get file from FTP server.

I am facing the issue that after downloading the files to my local dir, the files getting deleted even though the remove flag is false.

using (Session session = new Session())
{
session.DisableVersionCheck = true;
session.Open(sessionOptions);


// Download files
TransferOptions transferOptions = new TransferOptions();
transferOptions.TransferMode = TransferMode.Binary;
//transferOptions.OverwriteMode = OverwriteMode.Overwrite;

TransferOperationResult transferResult;
transferResult = session.GetFiles("/IN/*", filepath + @"\download\", false, transferOptions);

// Throw on any error
transferResult.Check();

// Print results
foreach (TransferEventArgs transfer in transferResult.Transfers)
{
Console.WriteLine("Download of {0} succeeded", transfer.FileName);
}
}


I would appreciate anyone help me on this quickly.

Thanks,
Gaya