我在Lubuntu上使用 Oracle 的VirtualBox在虚拟机上运行它。我认为这不会影响任何事情,但我只是认为值得一提。
似乎错误出现在以下函数返回的字符串末尾附加的奇怪符号中:
inline std::string f_settings_get(std::string val){
int index=0;
while(strcmp(val.c_str(),f_settings[0][index].c_str())!=0){
index++;
};
// For debugging purposes - printf("\n%s\t%s",f_settings[0][index].c_str(),f_settings[1][index].c_str());
return f_settings[1][index];
}
我看不出这个函数有问题,因此相信它可能是由存储在变量中的数据引起的。
我一直在尝试使用在我的程序中打开一个文件,fopen
并且遇到了标题中所述的错误。该代码在 Windows 中完美运行(我已经考虑了每个操作系统的/
和);\
但是,在 Linux 上运行时,虽然它编译得很好,但我得到文件不存在的错误。我在网上查了一下,发现其他人有几个问题,例如:
我使用提供的Python脚本检查了第一个,并使用新名称重新创建文件。那没有用(并且 Python 脚本显示文件名很好)。
我将所有权限设置为 777 usingchmod -R 777 clesis
但这不起作用(尽管我没想到它是权限问题,因为它说该文件不存在)。
我已经调用了完整路径并仔细检查了路径。它是正确的。
最后,我在代码中运行了以下代码以仔细检查:(a) 文件存在,(b) 我试图打开正确的文件。
tmp_s="";
tmp_s = homeDir+binP+f_settings_get("xxxxx"); // Note, you can easily get whatever variable you want using either f_settings_get or num_settings_get
tmp_file = fopen(tmp_s.c_str(), "r+");
printf("\n Running the following command: /home/xxxxx/programming/xxxxx/bin\n");
std::system("ls -l /home/xxxxx/programming/xxxxx/bin");
getWait();
printf("\n Tried to open: %s", tmp_s.c_str());
if (tmp_file == NULL){
printf("\n");
perror("Error loading dimensions.sim");
printf("Press enter to exit...");
getWait();
exit(1);
}
以下是输出的外观(抱歉审查内容。我向您保证用户名和文件夹的拼写相同):
输出显示以下内容:
Filenames Loaded...
Loading Settings from sim file...
++++++++++++++++++++++++++++++++++++++++++++++++++ Settings Loaded...
Loading System Dimensions from sys file...
--------------------------------------------------
Running the following command: /home/xxxxx/programming/xxxxx/bin
total 636
-rwxrwxrwx 1 xxxxx xxxxx 958 Jul 25 20:59 dimensions.sim
Tried to open: /home/xxxxx/programming/xxxxx/bin/dimensions.sim
Error loading dimensions.sim: No such file or directory
Press enter to exit...
如果文件路径直接指定为“bin/dimensions.sim”或“/home/xxxxx/programming/xxxxx/bin/dimensions.sim”,那么它可以正常工作。这使我得出一个令人困惑的结论。tmp_s
在从 a转换为 a 的某个地方std::string
存在c_str
导致错误目录路径的问题。但是,我正在使用的任何其他文件都不会发生这种情况,而且我在 Windows 机器上从未遇到过这个问题。因此,我对可能导致它的原因感到困惑。
最后一个观察结果 - 无论如何都使用printf("tmps = %s",tmp_s.c_str());
. 可以清楚地看出这并不“奇怪”。