Files
tactility/Tactility/Include/Tactility/Paths.h
T
2026-07-03 23:56:03 +02:00

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);
}