1

我正在寻找一个函数,它将返回特定目录中的内容列表。我得到的最接近的是使用这个:

system("dir");

但这只会打印工作目录的内容,我不能 CD 到其他任何地方。

我正在使用 Windows,我没有计划让它跨平台,所以不用担心。

4

1 回答 1

2

看下面这个页面直接复制的例子。它使用boost::filesystemso 适用于所有主要系统。

int main(int argc, char* argv[])
{
    path p (/* Specify a directory here */);

    try
    {
        if (exists(p))    // does p actually exist?
        {
            if (is_regular_file(p))        // is p a regular file?   
                cout << p << " size is " << file_size(p) << '\n';
            else if (is_directory(p))      // is p a directory?
            {
                cout << p << " is a directory containing:\n";

                copy(directory_iterator(p), directory_iterator(), // directory_iterator::value_type
                  ostream_iterator<directory_entry>(cout, "\n")); // is directory_entry, which is
                                                                  // converted to a path by the
                                                                  // path stream inserter
            }
            else
                cout << p << " exists, but is neither a regular file nor a directory\n";
        }
        else
            cout << p << " does not exist\n";
    }

    catch (const filesystem_error& ex)
    {
        cout << ex.what() << '\n';
    }

    return 0;
}
于 2012-05-14T04:09:06.350 回答