You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to download a directory from a UNIX system onto Windows. Some of the files contain ":" in timestamps in the filename.
This appears to be causing problems with the FileInfo creation in InternalDownload - Windows doesn't allow colons in filenames.
Unless I'm missing something there is no option to translate invalid Windows characters from Unix?
Perhaps ScpClient.Download(string directoryName, DirectoryInfo directoryInfo) could have an overload for UnixToWindows conversion where colons are replaced by hyphens?
Activity