Post a reply

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: exculding a file or directory in c#

sharif wrote:

this synchronisation stucks when it get to such files name which is not supported in windows.

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

To generate 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 may email it to me. You will find my address (if you log in) in my forum profile. Please include link back to this topic in your email. Also note in this topic that you have emailed the log.
sharif

exculding a file or directory in c#

I am using synchronisation from linux to windows thruogh c# code. The problem i am facing is some files names in linux are not supported in windows. this synchronisation stucks when it get to such files name which is not supported in windows. Now i want to exclude those directories and file names. Can any one please help me.
string path = Server.MapPath("~/Data/");
// Connect
session.Open(sessionOptions);
// Synchronize files
SynchronizationResult synchronizationResult;
synchronizationResult =
session.SynchronizeDirectories(
SynchronizationMode.Local, path, "//fdr/mydat/msgfolder", false);
// Throw on any error
synchronizationResult.Check();