Re: White spaces into folder name
- Posted by sergelli Oct 26, 2011
- 35850 views
mattlewis said...
It's not entirely clear what you're trying to do. I'm going to assume that euiw.exe is on your path, and you just want to run the program:
system( `euiw.exe "c:\Program Files\EuFiles\test.exw"`, -2)
Note that I used the backticks for quotes, which do not use escapes, so it's maybe a little clearer what's going on. Of course, you could build that more dynamically:
path = `c:\Program Files\EuFiles\test.exw` system( sprintf(`euiw.exe "%s"`, { path }), 2)
Matt
O.K. Thus, (with the backticks for quotes) the code works perfectly.
But, it is normal that does not work with "system_exec"?
What should I do to get the same result, but using the "system_exec"?