- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本 - 添加 C++ Primer 练习代码 - 新增 Learn C++ 教程的 C++ 开发简介章节 - 添加头文件解析文档 - 更新 mkdocs.yml,包含新教程的目录结构 - 修改项目设置,使用 Python 3.10环境
30 lines
1.1 KiB
Markdown
30 lines
1.1 KiB
Markdown
---
|
|
title: "Chapter 08 File System"
|
|
type: book-en-us
|
|
order: 8
|
|
---
|
|
|
|
# Chapter 08 File System
|
|
|
|
[TOC]
|
|
|
|
The file system library provides functions related to
|
|
the operation of the file system, path, regular files, directories, and so on.
|
|
Similar to the regular expression library, it was one of the first libraries
|
|
to be launched by boost and eventually merged into the C++ standard.
|
|
|
|
## 8.1 Document and Link
|
|
|
|
TODO:
|
|
|
|
## 8.2 std::filesystem
|
|
|
|
TODO:
|
|
|
|
[Table of Content](./toc.md) | [Previous Chapter](./07-thread.md) | [Next Chapter: Minor Features](./09-others.md)
|
|
|
|
## Further Readings
|
|
|
|
## Licenses
|
|
|
|
<a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png" /></a><br />This work was written by [Ou Changkun](https://changkun.de) and licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License</a>. The code of this repository is open sourced under the [MIT license](../../LICENSE). |