mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-10 01:10:27 +00:00
23 lines
714 B
C++
23 lines
714 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
enum LS_FLAGS
|
|
{
|
|
LS_ALL = 0x00,
|
|
LS_DIRS = 0x01,
|
|
LS_FILES = 0x02,
|
|
};
|
|
|
|
std::string read_line(const std::string& filename);
|
|
bool find_folder(const char* root, const char* prefix, std::string& dest);
|
|
bool find_folder(const std::string& root, const std::string& prefix, std::string& dest);
|
|
std::vector<std::string> ls(const char* root, const char* prefix = nullptr, LS_FLAGS flags = LS_DIRS);
|
|
bool file_exists(const std::string& path);
|
|
bool dir_exists(const std::string& path);
|
|
std::string get_exe_path();
|
|
bool get_wine_exe_name(std::string& name, bool keep_ext = false);
|
|
std::string get_home_dir();
|
|
std::string get_data_dir();
|
|
std::string get_config_dir();
|