boost库中的filesystem的path类对象的用法

144 篇文章 6 订阅

一、说明

boost库中的filesystem中有关路径的操作十分的方便特别是path重载的/,看起来就像对普通路径的书写一样,你再也不用担心为组合路径时少写‘/’而导致找不到文件或者程序直接崩溃烦恼啦,因为当你缺少时path会自动的给你添加上啦。而在C++14以上的版本这块正式成了C++的标准啦。废话不说啦,直接上代码,下面只演示了一些常用的,更多方法可以直接go到源码中去看看。

如果在使用过程中提示某些方法不存在,则要看一下本电脑上boost库对应的头文件里面规定了哪些函数。一般在/usr/include/boost/filesystem目录下。不同版本的boost提供的函数可能不同。相比于windows上的程序,linux上的库文件不同版本之间的差异性更突出一些。

编译的时候要加上libboost_filesystem.so,boost是一个库的集合,对应的.so很多,用到哪个要把哪个加上去,具体的可以去/usr/lib/x86_64-gnu-linux/下面看,有一堆libboost开头的.so。

二、测试代码

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

using namespace std;
using namespace boost::filesystem;

int main(int argc, char *argv[])
{
    string filePath = "/work/test/testPath";
    string fileName = "test_path.txt";

    //path("/work/test/testPath/test_path.txt");
    boost::filesystem::path testFilePath(filePath);

    // 使用'/'追加路径,并把路径转化成字符串
    string fullFilePath = (testFilePath/fileName).string();
    cout << "fullFilePath:" << fullFilePath << endl;

    if(!testFilePath.empty())
        cout << "path is not empty" << endl;
    // 取fullFilePath中的部分路径
    boost::filesystem::path workPath(fullFilePath.begin(),fullFilePath.begin()+5);
    cout << "workPath:" << workPath << endl;
    // 追加路径'/='
    workPath /= "testPath";
    cout << "workPath append path:" << workPath << endl;
    // 追加字符序列append
    workPath.append(fileName.begin(),fileName.end());
    cout << "workPath append string file:" << workPath << endl;

    // 返回当前文件系统下的绝对路径system_complete
    cout << "system_complete:" << system_complete(workPath) << endl;

    // 返回标准格式的文件路径string()
    cout << "string():" << workPath.string() << endl;

    // 返回文件通用路径
    if(workPath.is_absolute())
    cout << "generic_string():" << workPath.generic_string() << endl;

    // 返回路径中的父路径
    if(workPath.has_parent_path())
        cout << "parent_path():" << workPath.parent_path() << endl;

    // 不含扩展名的全路径
    if(workPath.has_stem())
        cout << "stem():" << workPath.stem() << endl;

    // 返回文件名
    if(workPath.has_filename())
        cout << "filename():" << workPath.filename() << endl;

    // 返回文件扩展名
    cout << "extension():" << workPath.extension() << endl;

    // 返回路径根目录
    if(workPath.has_root_path())
        cout << "root_path():" << workPath.root_path() << endl;

    // 返回根名称
    if(workPath.has_root_name())
        cout << "root_name():" << workPath.root_name() << endl;

    // 返回相对路径
    if(workPath.has_relative_path())
        cout << "relative_path():" << workPath.relative_path() << endl;

    // 返回root文件夹目录
    if(workPath.has_root_directory())
        cout << "root_directory():" << workPath.root_directory() << endl;

    // 变更文件扩展名(只是看起来像更改了,实际的文件名字并没有发生变化)
    cout << "replace_extension() remove:" << workPath.replace_extension() << endl; // 删除扩展名
    cout << "replace_extension() change:" << workPath.replace_extension("go") << endl; // 更改扩展名

    // 删除文件名
    cout << "remove_filename():" << workPath.remove_filename() << endl;

    cout << "Hello World!" << endl;
    return 0;
}

运行结果:
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值