C++:常用 Filesystem library function

Jacky | Aug 30, 2022 min read

此內容由 Notion 編輯並經由 Notion API 自動轉成 Hugo 頁面
The content write by Notion, and use Notion API convert to Hugo page.

紀錄下目前用過的功能

  • 路徑表示
filesystem::path path
  • 列出目錄(資料夾)的內容
filesystem::directory_iterator(path)
  • 取得最後寫入時間
filesystem::last_write_time()
  • 取出檔名
path.filename()
  • 取出副檔名
path.filename().extension()
  • 取得父目錄
path.parent_path()
  • 取代副檔名
path.replace_extension("XXX")
  • 轉成字串std::string
path.string()

參考

comments powered by Disqus