标准库标头 <filesystem> (C++17)学习

embedded/2024/10/22 14:04:20/

此头文件是文件系统支持库的一部分。本篇介绍filesystem命名空间的一些函数。

函数

在命名空间 std::filesystem 定义

absolute

(C++17)

组成一个绝对路径
(函数)

canonicalweakly_canonical

(C++17)

组成一个规范路径
(函数)

relativeproximate

(C++17)

组成一个相对路径
(函数)

copy

(C++17)

复制文件或目录
(函数)

copy_file

(C++17)

复制文件内容
(函数)

copy_symlink

(C++17)

复制一个符号链接
(函数)

create_directorycreate_directories

(C++17)(C++17)

创建新目录
(函数)

create_hard_link

(C++17)

创建一个硬链接
(函数)

create_symlinkcreate_directory_symlink

(C++17)(C++17)

创建一个符号链接
(函数)

current_path

(C++17)

返回或设置当前工作目录
(函数)

exists

(C++17)

检查路径是否指代既存的文件系统对象
(函数)

equivalent

(C++17)

检查两个路径是否指代同一文件系统对象
(函数)

file_size

(C++17)

返回文件的大小
(函数)

hard_link_count

(C++17)

返回指代特定文件的硬链接数
(函数)

last_write_time

(C++17)

获取或设置最近一次数据修改的时间
(函数)

permissions

(C++17)

修改文件访问权限
(函数)

read_symlink

(C++17)

获得符号链接的目标
(函数)

removeremove_all

(C++17)(C++17)

移除一个文件或空目录
移除一个文件或递归地移除一个目录及其所有内容
(函数)

rename

(C++17)

移动或重命名一个文件或目录
(函数)

resize_file

(C++17)

以截断或填充零更改一个常规文件的大小
(函数)

space

(C++17)

确定文件系统上的可用空闲空间
(函数)

statussymlink_status

(C++17)(C++17)

确定文件属性
确定文件属性,检查符号链接目标
(函数)

temp_directory_path

(C++17)

返回一个适用于临时文件的目录
(函数)

 示例代码:

#include <filesystem>
#include <iostream>
#include <string>
#include <cstdlib>
#include <fstream>
#include <cstdint>
#include <system_error>namespace fs = std::filesystem;void show(std::filesystem::path x, std::filesystem::path y)
{std::cout << "x:\t\t " << x << "\ny:\t\t " << y << '\n'<< "relative(x, y):  "<< std::filesystem::relative(x, y) << '\n'<< "proximate(x, y): "<< std::filesystem::proximate(x, y) << "\n\n";
}void demo_exists(const fs::path& p, fs::file_status s = fs::file_status{})
{std::cout << p;if (fs::status_known(s) ? fs::exists(s) : fs::exists(p))std::cout << " exists\n";elsestd::cout << " does not exist\n";
}struct HumanReadable
{std::uintmax_t size{};private:friend std::ostream& operator<<(std::ostream& os, HumanReadable hr){int o{};double mantissa = hr.size;for (; mantissa >= 1024.; mantissa /= 1024., ++o);os << std::ceil(mantissa * 10.) / 10. << "BKMGTPE"[o];return o ? os << "B (" << hr.size << ')' : os;}
};int main(int, char const* argv[])
{//path current_path example  返回或设置当前工作目录 std::cout << "当前路径为 " << fs::current_path() << '\n';//path temp_directory_path example 返回一个适用于临时文件的目录 std::cout << "temp_directory_path " << fs::temp_directory_path() << '\n';//absolute example  当前路径/foo.c  组成一个绝对路径 std::filesystem::path p = "foo.c";std::cout << p << " 的绝对路径为 " << fs::absolute(p) << '\n';// create_directory/create_directories example 创建新目录 auto temp = fs::current_path();auto dir1 = temp / "abc";auto dir2 = temp / "abb/c2/e";std::filesystem::create_directory(dir1); //只能创建单个目录std::filesystem::create_directories(dir2);//可以创建多级目录std::filesystem::current_path(dir2);//设置当前路径// canonical/weakly_canonical  example 组成一个规范路径//"D:\\vscpp\\cpp20\\cpp20standard\\filesystem"auto p1 = std::filesystem::path("../../c2/./e");auto p2 = std::filesystem::path("../no-such-file");std::cout << "当前路径为 "<< std::filesystem::current_path() << '\n'<< p1 << " 的规范路径为 "<< std::filesystem::canonical(p1) << '\n'<< p2 << " 的弱规范路径为 "<< std::filesystem::weakly_canonical(p2) << '\n';try{[[maybe_unused]] auto x_x = std::filesystem::canonical(p2);// 不会抵达此处}catch (const std::exception& ex){std::cout << p2 << " 的规范路径抛出了异常:\n"<< ex.what() << '\n';}//relative / proximate 组成一个相对路径 show("/a/b/c", "/a/b");show("/a/c", "/a/b");show("c", "/a/b");show("/a/b", "c");//auto temp = fs::current_path();auto dir3 = temp / "abb\\c2";auto dir4 = temp / "abb\\dir4";auto file1 = temp / "abb\\file1.txt";auto file2 = temp / "abb\\file2.txt";std::cout << "dir3======================" << dir3 << "\n";std::ofstream(file1).put('a');fs::copy(file1, file2); // 复制文件fs::copy(dir3, dir4); // 复制目录(非递归)const auto copyOptions = fs::copy_options::update_existing| fs::copy_options::recursive| fs::copy_options::directories_only;auto dirAbc = temp / "abc";auto dir5 = temp / "abb_copy";fs::copy(dirAbc, dir5, copyOptions);static_cast<void>(std::system("tree"));// remove/remove_all 移除一个文件或空目录 / 移除一个文件或递归地移除一个目录及其所有内容fs::remove(file1);fs::remove(file2);fs::remove_all(dirAbc);fs::remove_all(dir5);//exists example 检查路径是否指代既存的文件系统对象 const fs::path sandbox{ temp/"sandbox" };fs::create_directory(sandbox);std::ofstream{ sandbox / "file" }; // 创建常规文件//fs::create_symlink("non-existing", sandbox / "symlink");demo_exists(sandbox);for (const auto& entry : fs::directory_iterator(sandbox))demo_exists(entry, entry.status()); // 使用来自 directory_entry 的缓存状态fs::remove_all(sandbox);// 硬链接等价  equivalent example 检查两个路径是否指代同一文件系统对象 fs::path path1 = ".";fs::path path2 = fs::current_path();if (fs::equivalent(path1, path2))std::cout << path1 << " is equivalent to " << path2 << '\n';// 符号链接等价 for (const fs::path lib : {"/lib/libc.so.6", "/lib/x86_64-linux-gnu/libc.so.6"}){try{path2 = lib.parent_path() / fs::read_symlink(lib);}catch (std::filesystem::filesystem_error const& ex){std::cout << ex.what() << '\n';continue;}if (fs::equivalent(lib, path2))std::cout << lib << " is equivalent to " << path2 << '\n';}//file_size example 返回文件的大小 fs::path example = "bug.nc";fs::path path3 = fs::current_path() / example;std::ofstream(path3).put('a'); // 创建大小为 1 的文件std::cout << example << " size = " << fs::file_size(path3) << '\n';fs::remove(path3);path3 = argv[0];std::cout << path3 << " size = " << HumanReadable{ fs::file_size(path3) } << '\n';try{std::cout << "尝试获取目录的大小:\n";[[maybe_unused]] auto x_x = fs::file_size("/dev");}catch (fs::filesystem_error& e){std::cout << e.what() << '\n';}for (std::error_code ec; fs::path bin : {"cat", "mouse"}){bin = "/bin" / bin;if (const std::uintmax_t size = fs::file_size(bin, ec); ec)std::cout << bin << " : " << ec.message() << '\n';elsestd::cout << bin << " size = " << HumanReadable{ size } << '\n';}//rename example 移动或重命名一个文件或目录 std::filesystem::path path4 = std::filesystem::current_path() / "sandbox";std::filesystem::create_directories(path4 / "from");std::ofstream{ path4 / "from/file1.txt" }.put('a');std::filesystem::create_directory(path4 / "to");fs::rename(path4 / "from/file1.txt", path4 / "to/file2.txt"); // OK
//	fs::rename(path4 / "from", path4 / "to/subdir"); // OK//space example确定文件系统上的可用空闲空间std::error_code ec;const std::filesystem::space_info si = std::filesystem::space(path4, ec);std::cout << "capacity: " << si.capacity << "\tavailable:" << si.available << "\tfree:" << si.free << '\n';//std::filesystem::remove_all(path4);std::cout << "hello world\n";return 0;
}

运行结果:

参考:

标准库标头 <filesystem> (C++17) - cppreference.com


http://www.ppmy.cn/embedded/108359.html

相关文章

Vue 中的 Vuex:全面解析与使用教程

什么是 Vuex&#xff1f; Vuex 是 Vue.js 官方提供的状态管理模式&#xff0c;专为 Vue.js 应用设计。它通过集中式存储管理应用中所有的组件状态&#xff0c;允许组件之间更方便地共享数据&#xff0c;并提供了一套规则来确保状态以可预测的方式发生变化。Vuex 对大型应用尤其…

uniapp小程序下载缓存服务器上的图片

1. 使用uni.downloadFile,但是注意下载图片的地址里的域名&#xff0c;需要在微信公众平台里面的downloadFile合法域名进行配置。 export default function downloadAndCacheImage(imageUrl, name) {return new Promise((resolve, reject) > {console.log("imageUrl&q…

从材料到应用:螺杆支撑座材质选择的多样性与精准性!

支撑座是连接丝杆和电机的轴承固定座&#xff0c;其材料的选择直接影响使用效果。那么&#xff0c;大家知道螺杆支撑座常用的材质有哪些吗&#xff1f; 1、高碳钢&#xff1a;高碳钢因其高强度和良好的耐磨性&#xff0c;是螺杆支撑座制作中常用的材料。它能够很好地配合滚珠螺…

《云原生安全攻防》-- K8s攻击案例:高权限Service Account接管集群

《网安面试指南》http://mp.weixin.qq.com/s?__bizMzkwNjY1Mzc0Nw&mid2247484339&idx1&sn356300f169de74e7a778b04bfbbbd0ab&chksmc0e47aeff793f3f9a5f7abcfa57695e8944e52bca2de2c7a3eb1aecb3c1e6b9cb6abe509d51f&scene21#wechat_redirect 在本节课程中…

go语言并发编程-超详细mutex解析

文章目录 1 go语言并发编程学习-mutex1.1 学习过程1.2 如何解决资源并发访问的问题&#xff1f;【基本用法】1.2.1 并发访问带来的问题1.2.1.1 导致问题的原因 1.2.2 race detector检查data race1.2.3 mutex的基本实现机制以及使用方法1.2.3.1 具体使用-11.2.3.1 具体使用-2 1 …

javascript中数组遍历的所有方法

作为后端程序员平常js用得少&#xff0c;但是数组遍历又是常用功能&#xff0c;遍历方法又有很多。在此记录一下&#xff0c;所有用得上的数组遍历方法。 1.for循环 最基本的数组遍历 特点: 通常配合数组的 .length 属性使用。索引从0开始&#xff0c;需要注意边界问题。 …

【数据分享】《中国城市统计年鉴》(1985-2023)全PDF版本 第一次补档

数据介绍 中国城市&#xff0c;如同一本生动的历史书&#xff0c;承载着经济、社会的快速变迁。《中国城市统计年鉴》记录了城市的发展轨迹&#xff0c;是我们理解城市化进程、洞察城市挑战的重要指南。 这份年鉴的数据庞大而详实&#xff0c;囊括了中国城市发展的多个方面。…

5.8 切换保护模式(5)

1 首先测试 了&#xff0c; 之前的代码 是 没有问题的&#xff0c;确实会 停在 汇编处。 1 首先是 设置 除了 CS 之外的寄存器 进入 32为模式 //为了使除了 cs 之外的 段选择寄存器也进入 32位模式。mov $16, %ax // 16为数据段选择子mov %ax, %dsmov %ax, %ssmov %ax, %esmov…