是否有用于文件搜索的跨平台C / C ++库? (在硬盘上)

时间:2010-06-07 22:39:45

标签: c++ c search cross-platform

是否有用于文件搜索的跨平台C \ C ++ lib? (在硬盘上)我需要的是简单的 - 能够在所有文件夹和子文件夹中找到用户计算机上的所有图像,其中sise> = 200kb。

怎么做这样的事情?谁能帮我?请。

2 个答案:

答案 0 :(得分:6)

Boost.Filesystem是一个很棒的图书馆。这是我之前写的代码,一旦你知道了库,就可以轻松地更改搜索条件(你可以查询大小和扩展名):

#include <iostream>
#include <string>
#include <vector>
#include <boost/filesystem.hpp>

using namespace std;
using namespace boost::filesystem;

void find_file(const path& root, const string& file_name, vector<path>& found_files)
{
        directory_iterator current_file(root), end_file;
        bool found_file_in_dir = false;
        for( ; current_file != end_file; ++current_file)
        {
                if( is_directory(current_file->status()) )
                        find_file(*current_file, file_name, found_files);
                if( !found_file_in_dir && current_file->leaf() == file_name )
                {
                        // Now we have found a file with the specified name,
                        // which means that there are no more files with the same
                        // name in the __same__ directory. What we have to do next,
                        // is to look for sub directories only, without checking other files.
                        found_files.push_back(*current_file);
                        found_file_in_dir = true;
                }
        }
}

int main()
{
        string file_name;
        string root_path;
        vector<path> found_files;

        std::cout << root_path;
        cout << "Please enter the name of the file to be found(with extension): ";
        cin >> file_name;
        cout << "Please enter the starting path of the search: ";
        cin >> root_path;
        cout << endl;

        find_file(root_path, file_name, found_files);
        for( std::size_t i = 0; i < found_files.size(); ++i)
                cout << found_files[i] << endl;
}

答案 1 :(得分:1)

ACE有很多跨平台的包装器。在您的特定情况下,请参阅ACE_DirentACE_OS::scandir / ACE_OS::opendir / ACE_OS::readdir和朋友功能。 ACE是操作系统之间非常强大的抽象层。如果你需要这样的东西,那么这就是你要走的路。