36#ifndef _OMS_FILESYSTEM_H_
37#define _OMS_FILESYSTEM_H_
40namespace filesystem = std::filesystem;
43#define OMS_RECURSIVE_DIRECTORY_ITERATOR(path) (filesystem::recursive_directory_iterator{path})
45filesystem::path
naive_uncomplete(
const filesystem::path& path,
const filesystem::path& base);
47void oms_copy_file(
const filesystem::path& from,
const filesystem::path& to);
void oms_copy_file(const filesystem::path &from, const filesystem::path &to)
Definition OMSFileSystem.cpp:93
filesystem::path naive_uncomplete(const filesystem::path &path, const filesystem::path &base)
Definition OMSFileSystem.cpp:50
filesystem::path oms_temp_directory_path(void)
Definition OMSFileSystem.cpp:126
filesystem::path oms_unique_path(const std::string &prefix)
Definition OMSFileSystem.cpp:81
filesystem::path oms_canonical(const filesystem::path &p)
Definition OMSFileSystem.cpp:107
filesystem::path oms_absolute(const filesystem::path &p)
Definition OMSFileSystem.cpp:121