-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
os/exec: Cmd adds random slashes to paths on run #14575
Comments
exec.Cmd does inserts a lot of back slashes (and other characters) when it builds command line on windows. See https://github.com/golang/go/blob/master/src/syscall/exec_windows.go#L84 for details. But I don't think these back slashes are random. That is what Microsoft recomends we do (see a link in the code). I think your case fails because exec.Cmd tries hard to incorporate " into paths and other parameters, and 7za is confused by these. I think you're trying too hard, tyr this (not tested):
Alex |
That works, fortunately 7-Zip supports |
I don't understand. Are you saying that my suggestion above will not work if output path contains space? But I think it will just work too. Try this
Alex |
Your example works fine, I'm talking about a program that does not support |
I still don't understand what you're after. But, perhaps, that is not important. Should we close this issue as "exec.Command is working as intended"? Alex |
Let's assume there is a program that accepts a parameter
It does not accept:
So _This is how this program behaves, it is coded this way_, it does not allow Windows doesn't have any problem and executes this command
cmd := exec.Command("someprogram", `-o"C:\Folder with space\"`)
cmd.Run() // doesn't work, path becomes \C:\Folder with space\, program fails |
Thank you for explaining. Unfortunately everything you say is just you guessing about how system works. Why don't you provide a real example of a problem? Alex |
You can't use Let's move this to the mailing list since this isn't a bug as far as I can see. |
Since we are talking about cmd.exe, http://blogs.msdn.com/b/twistylittlepassagesallalike/archive/2011/04/23/everyone-quotes-arguments-the-wrong-way.aspx explains how you pass parameters to it. Not for fainthearted. Alex |
@bradfitz if you look at my last example in my first comment, I'm not using any functions: cmd := exec.Command("7za", "x", "C:\\test.zip", "-aoa", "-r", `-o"C:\testfolder\"`, "*.xml")
fmt.Println("cmd.Args:", cmd.Args)
cmdoutput, err := cmd.CombinedOutput()
fmt.Println("output:", string(cmdoutput), err) This works in Command Prompt and fails in Go. |
The way you escape characters in "Command Prompt" and Go are different. For "Command Prompt" escape rules see my URL above. For Go you don't need to escape anything (except standard Go escape rules for strings), you pass your arguments to exec.Command exactly how you want your child process see them. Alex |
@dogancelik, yes, what @alexbrainman said. I doubt you want the |
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?What did you do?
Run 7za (7-zip) and extract files
What did you expect to see?
What did you see instead?
cmd.CombinedOutput(), cmd.Output(), and cmd.Run() adds / prefixes
\
toC:\test.zip
Here's example
test.zip
file: test.zipI can't do put space between
-o
and"C:\testfolder"
because 7-Zip doesn't work that way.Second test, same error, this time, it puts
\
at-o
argument:The text was updated successfully, but these errors were encountered: