我正在尝试将所有.txt文件读入给定文件夹,并且为此我尝试使用Boost库:

int FileLoad::ReadTxtFiles(const std::string folder){
    int loadStatus = LOAD_OK;

    // Check if given folder exists
    if(boost::filesystem::is_directory(folder)){
        // Iterate existing text files
        boost::filesystem::directory_iterator end_iter;
        for(boost::filesystem::directory_iterator dir_itr(folder);
            dir_itr!=end_iter; dir_itr++){

            boost::filesystem::path filePath;
            try{
                // Check if it is a file
                if(boost::filesystem::is_regular_file(dir_itr->status())){
                    filePath = dir_itr->path();
                    // Check that it is .txt extension
                    std::string fileExtension =
                        dir_itr->path().extension().string(); // Case insensitive comparison
                    if(boost::iequals(fileExtension, ".txt")){
                        // Filename is the code used as id when the file text is loaded to a database
                        std::string fileName = dir_itr->path().stem().string();
                        std::istringstream is(fileName);
                        unsigned int entryId;
                        is >> entryId;
                        // Check if an entry with that code id currently exists
                        // at the database
                        if(!DATABASE::CheckIfEntryExists(entryId)){
                            // Process text file
                            loadStatus = ProcessFile(filePath.string());
                        }
                    }
                }
            }
            catch(const std::exception& ex){
                std::cerr << " [FILE]  Error trying to open file " <<
                    filePath.string() << std::endl;
            }
        }
    }

    return loadStatus;
}


但是我收到两个编译器错误:

undefined reference to `boost::filesystem3::path::extension() const'
undefined reference to `boost::filesystem3::path::stem() const'


我将以下导入导入类头文件:

#include "boost/algorithm/string.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/path.hpp"


(在其他不相关的事物中,例如)

我究竟做错了什么?

最佳答案

您必须与-lboost_filesystem -lboost_system链接,以解决这些链接器错误

Boost文件系统取决于这些库中可用的其他已编译组件

08-27 04:45