in reply to [OT++] Seeking Win32 Python Wisdom

Isnt there a shell that takes backslashes? I'll have to check my notes later but i think there is

Replies are listed 'Best First'.
Re^2: [OT++] Seeking Win32 Python Wisdom
by syphilis (Archbishop) on Mar 17, 2017 at 05:54 UTC
    Isnt there a shell that takes backslashes?

    There's the cmd.exe shell (but that shell is unusable for this exercise).
    Also, the msys2 shell will accommodate backslashes in the path ... so long as they're escaped:
    sisyphus@Owner-PC311012 MINGW64 ~ $ ls C:\\_32\\Python27\\doc python274.chm sisyphus@Owner-PC311012 MINGW64 ~ $ ls C:\\\_32\\\Python27\\\doc python274.chm sisyphus@Owner-PC311012 MINGW64 ~ $ ls C:\\\\_32\\\\Python27\\\\doc python274.chm sisyphus@Owner-PC311012 MINGW64 ~ $ ls C:\\_32\\\Python27\\\\doc python274.chm
    That could (potentially) be useful.

    Cheers,
    Rob