| 510 | #include <direct.h> |
| 511 | |
| 512 | std::string cResourceMan::getcwd() { |
| 513 | char buff[1024]; |
| 514 | _getcwd(buff, 1024); |
| 515 | std::string cwd(buff); |
| 516 | return cwd; |
| 517 | } |
| 518 | |
| 519 | std::vector<std::string> cResourceMan::DirectoryList(const std::string& pPath, const std::string& pExtension) { |
| 520 | WIN32_FIND_DATA fdata; |
nothing calls this directly
no outgoing calls
no test coverage detected