我使用以下功能:
std::string exec(const char* cmd) {
std::array<char, 128> buffer;
std::string result;
std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
if (!pipe) {
throw std::runtime_error("popen() failed!");
}
while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
result += buffer.data();
}
return result;
}
std::string filepath = exec("locate filename.txt");
它返回一个std::string
,我使用.c_str()
对其进行转换:
std::ifstream file(filepath.c_str(), ios::in);
但是我尝试之后:
if(file)
{
...
}
else
{
std::cerr << "File missing : " + filepath << std::endl;
}
然后我得到:
File missing : /path/to/file
答案 0 :(得分:2)
Unix命令locate
在每个文件名之后输出换行符('\n'
),因此在将其用作文件名之前,需要从locate
命令的输出中删除此字符。您可能为此使用类pop_back
的方法string
。
还请注意,locate
可能会输出多个文件名,并且文件名中可能包含换行符。