1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 10:10:45 +00:00
falk-werner_webfuse-provider/test/webfuse/utils/file_utils.hpp

18 lines
275 B
C++
Raw Normal View History

#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