lolautoaccept/include/files.h
2022-07-05 23:45:28 +02:00

15 lines
293 B
C++

#pragma once
// stuff required for file handling
#include <string>
// create a directory and its parents
bool mkdirs(const std::string& path);
// get $HOME or a useful default value
std::string getHome();
// folder for caching example: $HOME/.cache/lolautoaccept/
std::string getCache();