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
This particular behavior is not a bug in the library.
Ref #226 reports the same problem, still not fixed?
It's not caused by the library. Nor can it be solved by the library, as the library operates on the args array passed to the Main method. If you would have bothered and just spent 20 seconds to read the response in the issue you linked, you would know what is going on... 👎😒
Inspect the args array you are passing, and you might be surprised by what you see.
(Basically, what you observe is the typical behavior by the program start-up code which is creating the args array for the Main method from the commandline string provided to the program. This behavior is equivalent to the WinAPI function GetCommandlineArgs. Plus, the syntax rules of the shell used to type in the commandline arguments also have an effect on what the commandline string passed to the program will look like, and thus also have an effect on what the content in the args array will ultimately look like.)
Describe the bug
Read string option with backslash \ and " results in reading " in the string.
To Reproduce
-P "C:\path\to\read\"
Path: C:\path\to\read"
Expected behavior
Read backslash as it is. In the above example, output should be
Path: C:\path\to\read\
Additional context
Am i missing some options?
Ref issues/226 reports the same problem, still not fixed?
The text was updated successfully, but these errors were encountered: