mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
13 lines
286 B
C
13 lines
286 B
C
|
#ifndef FSUTILS_H
|
||
|
#define FSUTILS_H
|
||
|
|
||
|
#include <filesystem>
|
||
|
|
||
|
bool filepath_is_readable(const std::filesystem::path &path);
|
||
|
|
||
|
std::filesystem::path find_resource_file(const std::filesystem::path &path);
|
||
|
|
||
|
std::string path_to_string(const std::filesystem::path& path);
|
||
|
|
||
|
#endif // FSUTILS_H
|