MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / getcwd

Method getcwd

Source/ResourceMan.cpp:512–517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected