24 lines
487 B
C++
24 lines
487 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
namespace anm2ed::util::filesystem
|
|
{
|
|
std::string path_preferences_get();
|
|
|
|
bool path_is_exist(const std::string&);
|
|
bool path_is_extension(const std::string&, const std::string&);
|
|
|
|
std::filesystem::path path_lower_case_backslash_handle(std::filesystem::path&);
|
|
|
|
class WorkingDirectory
|
|
{
|
|
public:
|
|
std::filesystem::path previous;
|
|
|
|
WorkingDirectory(const std::string&, bool = false);
|
|
~WorkingDirectory();
|
|
};
|
|
}
|