Search code examples
c++commandsystemquotes

With system() in C++ on Windows, why are two quotes required to invoke a program in another directory?


I have the find.exe program in my utils folder. This does not work:

system("\"utils/find.exe\"");

All I get is

'utils' is not recognized as an internal or external command,
operable program or batch file.

However, for some reason this works:

system("\"\"utils/find.exe\"\"");

Echoing the single quoted string

system("echo \"utils/find.exe\"");

outputs

"utils/find.exe"

... so why do I need two quotes?


Solution

  • I assume you're on windows because you're trying to execute an .exe file. So, instead of writting "utils/find.exe", try to write "utils\find.exe". The delimiting character on windows is '\', so it probably sees "utils" as a command since '/' is ignored.