Mercurial > minori
view include/core/filesystem.h @ 259:0362f3c4534c
widgets/graph: improve drawing code
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 01 Apr 2024 18:11:15 -0400 |
parents | 862d0d8619f6 |
children | 3ec7804abf17 |
line wrap: on
line source
#ifndef __core__filesystem_h #define __core__filesystem_h #include <filesystem> #include <string> namespace Filesystem { void CreateDirectories(const std::filesystem::path& path); std::filesystem::path GetDotPath(); // %APPDATA%/minori/, ~/Library/Application Support/minori/, ~/.config/minori/... std::filesystem::path GetConfigPath(); // (dotpath)/config.json std::filesystem::path GetAnimeDBPath(); // (dotpath)/anime/db.json std::filesystem::path GetTorrentsPath(); // (dotpath)/torrents/... } // namespace Filesystem #endif // __core__filesystem_h