Forward slash is getting converted to backslash in folder name
While typing pathname in WinSCP – the forward slash are getting converted to backslash automatically and showing error "directory doesn't exist".
Advertisement
Advertisement
My\*Files
as the filter pattern, thinking they can escape the *
. That will actually filter My/*Files/
(or My\*Files\
, since slashes are interchangeable in WinSCP). The correct pattern, as the documentation notes, is My[*]Files
. Similarly, there's no reason to escape .
characters in WinSCP patterns, since they have no special meaning. So, a pattern like File*\.txt
would again insert an accidental directory separator, and should just be File*.txt
.)
Advertisement
You can post new topics in this forum