blob: eef60b2e0e08846b1bb933f295b6f62da6432b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef FLUORINEPATHS_H
#define FLUORINEPATHS_H
#include <QString>
/// Returns the Fluorine data directory: ~/.local/share/fluorine
QString fluorineDataDir();
/// Returns the VFS scan-cache directory: ~/.local/share/fluorine/vfs_cache
/// Created on demand by the cache writer.
QString fluorineVfsCacheDir();
/// One-time migration from ~/.var/app/com.fluorine.manager/ to
/// ~/.local/share/fluorine/. Call before initLogging().
void fluorineMigrateDataDir();
#endif // FLUORINEPATHS_H
|