29 lines
482 B
C++
29 lines
482 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <tactility/filesystem/file_system.h>
|
|
|
|
|
|
namespace tt {
|
|
|
|
bool findFirstMountedSdCardPath(std::string& path);
|
|
|
|
FileSystem* findSdcardFileSystem(bool mustBeMounted);
|
|
|
|
std::string getUserDataRootPath();
|
|
|
|
std::string getUserDataPath();
|
|
|
|
std::string getTempPath();
|
|
|
|
std::string getAppInstallPath();
|
|
|
|
std::string getAppInstallPath(const std::string& appId);
|
|
|
|
std::string getUserHomePath();
|
|
|
|
std::string getAppUserPath(const std::string& appId);
|
|
|
|
}
|