Files
ANSLibs/ANS-HWiNFO/include/hwinfo/utils/filesystem.h

14 lines
237 B
C
Raw Normal View History

#pragma once
#include <string>
namespace hwinfo {
namespace filesystem {
bool exists(const std::string& path);
std::vector<std::string> getDirectoryEntries(const std::string& path);
} // namespace filesystem
} // namespace hwinfo