1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 12:10:48 +00:00
falk-werner_webfuse-provider/test/webfuse/utils/file_utils.hpp
2020-02-20 17:15:13 +01:00

18 lines
275 B
C++

#ifndef WF_TEST_FILE_UTILS_HPP
#define WF_TEST_FILE_UTILS_HPP
#include <string>
namespace webfuse_test
{
bool is_dir(std::string const & path);
bool is_symlink(std::string const & path);
bool is_same_path(std::string const & path, std::string const & other);
}
#endif