在C++中,可以使用引号将包含空格的路径括起来,以避免空格被解释为多个参数。例如:
#include<iostream>
#include<string>
#include <cstdlib>
int main() {
std::string path = "/path/to/your/file with spaces.txt";
std::string command = "cat " + path;
int result = std::system(command.c_str());
if (result != 0) {
std::cerr << "Error executing command: "<< command<< std::endl;
}
return result;
}
在上面的示例中,我们将路径包含在引号中,并将其传递给std::system()
函数。这样,即使路径中包含空格,也可以正确地执行命令。
领取专属 10元无门槛券
手把手带您无忧上云