Mercurial > minori
annotate include/core/filesystem.h @ 237:a7d0d543b334
*: make OS X builds succeed
new script: deploy_build.sh, creates the app bundle
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Fri, 19 Jan 2024 11:14:44 -0500 |
| parents | 2f5a9247e501 |
| children | 862d0d8619f6 |
| rev | line source |
|---|---|
| 9 | 1 #ifndef __core__filesystem_h |
| 2 #define __core__filesystem_h | |
| 11 | 3 #include <string> |
|
135
0a458cb26ff4
filesystem: move to using std::filesystem after C++17 switch
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
4 #include <filesystem> |
| 11 | 5 |
| 6 namespace Filesystem { | |
| 7 | |
|
135
0a458cb26ff4
filesystem: move to using std::filesystem after C++17 switch
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
8 void CreateDirectories(const std::filesystem::path& path); |
|
230
2f5a9247e501
torrents: implement download button
Paper <paper@paper.us.eu.org>
parents:
135
diff
changeset
|
9 std::filesystem::path GetDotPath(); // %APPDATA%/minori/, ~/Library/Application Support/minori/, ~/.config/minori/... |
|
135
0a458cb26ff4
filesystem: move to using std::filesystem after C++17 switch
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
10 std::filesystem::path GetConfigPath(); // (dotpath)/config.json |
|
0a458cb26ff4
filesystem: move to using std::filesystem after C++17 switch
Paper <mrpapersonic@gmail.com>
parents:
118
diff
changeset
|
11 std::filesystem::path GetAnimeDBPath(); // (dotpath)/anime/db.json |
|
230
2f5a9247e501
torrents: implement download button
Paper <paper@paper.us.eu.org>
parents:
135
diff
changeset
|
12 std::filesystem::path GetTorrentsPath(); // (dotpath)/torrents/... |
| 11 | 13 |
| 36 | 14 } // namespace Filesystem |
| 11 | 15 |
| 16 #endif // __core__filesystem_h |
