#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命令,我可以轻松地在终端中打开它甚至编辑它。
答案 0 :(得分:3)
您无法使用~
在C ++程序中引用用户的主目录 - 此字符由 shell 扩展,而不是在一般
您应指定绝对路径,或使用getenv
,如图所示here。
更简单的解决方法就是将文件的完整路径传递给您的程序,而不用担心在程序中修改它(file_directory = argv[1]
,而不是当前的)。然后,从shell中,您可以键入
a.out "~/.local/share/Trash/info/hero.trashinfo"
并且shell将按预期展开~
。引号用于确保如果路径中有空格,则完整路径作为单个字符串传递,而不是由shell分成多个参数。