#include <bits/stdc++.h>
using namespace std;
int main(int count, char* argv[])
{
if(count!=2)
{
// print_syntax(argv[0]);
}
else if(count==2)
{
string file_name=argv[1];
// cout<<file_name<<endl;
string file_directory="~/.local/share/Trash/info/"+file_name+".trashinfo";
cout<<file_directory<<endl;
ifstream myReadFile;
myReadFile.open(file_directory);
char output[100];
if (myReadFile.is_open())
{
cout<<"here";
while (!myReadFile.eof())
{
myReadFile >> output;
cout<<output;
}
}
else
{
cout<<"Not working";
}
myReadFile.close();
}
}
我正在尝试从垃圾箱中读取一个文件,该文件还有两个子文件夹,一个包含已删除文件的元数据,扩展名为.trashinfo
但是由于某种原因,我无法在此程序中打开该文件。
root@kali:~/projects/Linux-Commands/Restore# ./a.out hero
~/.local/share/Trash/info/hero.trashinfo
Not working
root@kali:~/projects/Linux-Commands/Restore# vi ~/.local/share/Trash/info/hero.trashinfo
通过使用这个vi命令,我可以轻松地在终端中打开它,甚至可以对其进行编辑。
您不能使用~
来引用C++程序中用户的主目录 - 此字符由shell扩展,而不是一般的操作系统。
应指定绝对路径,或使用getenv
,如下所示。
更简单的解决方法是将文件的完整路径传递给程序,而不必担心在程序内部修改它(file_directory = argv[1]
,而不是当前(。然后,从外壳中,您可以键入
a.out "~/.local/share/Trash/info/hero.trashinfo"
外壳将按预期扩展~
。引号是为了确保如果路径中有空格,则完整路径将作为单个字符串传入,而不是由 shell 拆分为多个参数。