提升找不到档案

时间:2014-11-20 00:45:42

标签: c++ boost directory cygwin boost-filesystem

我想使用Boost的文件系统功能。我试试

cout << boost::filesystem::file_size(fname.c_str()) << endl;

fname="file.txt";,我收到错误

boost::filesystem::file_size: No such file or directory

我确信我有正确的道路,因为system("cat file.txt")有效。我检查过该文件夹不是NFS;这是NTFS。

我在Windows 7机器上的cygwin上使用g ++。

编辑:我也试过

cout << boost::filesystem::file_size(fname);

并使用fname="./file.txt"

在makefile中,我使用-lboost_system -lboost_filesystem进行关联,并使用-I /usr/local/opt/boost/include -L /usr/local/opt/boost/lib

更新:我更改了它,因此文件开头有一个using namespace boost::filesystem;,并在boost::filesystem::"前面删除了file_size()。现在我使用fname="file.txt"时出现同样的错误,但如果我使用fname="./file.txt",则会收到新的错误:

boost::filesystem::file_size: Operation not permitted

我尝试过不同种类的文件(.txt,.dat,.cpp)

随附的教程程序tut1.cpp使用相同的语法,因此我认为它可能是一个编译问题。我试图找到编译tut1.cpp的文件(可能是一个makefile)而没有运气。

tut1.cpp看起来像这样:

//  filesystem tut1.cpp  ---------------------------------------------------------------//

//  Copyright Beman Dawes 2009

//  Distributed under the Boost Software License, Version 1.0.
//  See http://www.boost.org/LICENSE_1_0.txt

//  Library home page: http://www.boost.org/libs/filesystem

#include <iostream>
#include <boost/filesystem.hpp>
using namespace boost::filesystem;

int main(int argc, char* argv[])
{
  if (argc < 2)
  {
    std::cout << "Usage: tut1 path\n";
    return 1;
  }
  std::cout << argv[1] << " " << file_size(argv[1]) << '\n';
  return 0;
}

1 个答案:

答案 0 :(得分:1)

fname是路径吗?因为,只需删除.c_str()成员调用。

可能是访问者功能添加了一些特定于操作系统的引用或转义。 (example on linux

您可以分配给std :: string,以便在调试器中观察值。