1

所以,我正在尝试更改我的目录以保存文件,然后更改回我之前所在的目录。

本质上:

cd folder_name
<save file>
cd ../

这是我到目前为止的代码:

void save_to_folder(struct fann * network, const char * save_name)
{
    boost::filesystem::path config_folder(Config::CONFIG_FOLDER_NAME);
    boost::filesystem::path parent_folder("../");


    if( !(boost::filesystem::equivalent(config_folder, boost::filesystem::current_path())))
        {
            if( !(boost::filesystem::exists(config_folder)))
            {
                std::cout << "Network Config Directory not found...\n";
                std::cout << "Creating folder called " << Config::CONFIG_FOLDER_NAME << "\n";
                boost::filesystem::create_directory(config_folder);
            }
            boost::filesystem::current_path(config_folder);
        }

    fann_save(network, save_name);
    boost::filesystem::current_path(parent_folder);

}

目前,每次调用该方法时都会发生这种情况:
文件夹不存在:被创建
文件夹不存在:被创建

它没有发挥cd ../作用。=(

所以我的目录结构如下所示:

文件夹名称
- 文件夹名称
-- 文件夹名称
--- 文件夹名称

4

2 回答 2

1

根据文档, current_path 方法有点危险,因为它可能会同时被其他程序修改。

所以从 CONFIG_FOLDER_NAME 操作可能会更好。

您可以将更大的路径名传递给 fann_save 吗?就像是:

if( !(boost::filesystem::exists(config_folder)))
{
    std::cout << "Network Config Directory not found...\n";
    std::cout << "Creating folder called " << Config::CONFIG_FOLDER_NAME << "\n";
    boost::filesystem::create_directory(config_folder);
}
fann_save(network, (boost::format("%s/%s") % config_folder % save_name).str().c_str());

否则,如果您对使用 current_path 感到满意或无法在 fann_save 中使用更大的路径,我会尝试以下操作:

boost::filesystem::path up_folder((boost::format("%s/..") % Config::CONFIG_FOLDER_NAME).str());
boost::filesystem::current_path(up_folder);
于 2011-05-09T06:54:57.950 回答
0

您可以尝试使用此代码。

void save_to_folder(struct fann * network, const char * save_name)
{
    boost::filesystem::path configPath(boost::filesystem::current_path() / Config::CONFIG_FOLDER_NAME);

   if( !(boost::filesystem::exists(configPath)))
   {
       std::cout << "Network Config Directory not found...\n";
       std::cout << "Creating folder called " << Config::CONFIG_FOLDER_NAME << "\n";
       boost::filesystem::create_directory(configPath);
   }
   fann_save(network, save_name);
}
于 2011-05-09T06:49:58.517 回答