retrieve the current working folder where file operation will occur.
| 158 | |
| 159 | // retrieve the current working folder where file operation will occur. |
| 160 | void ddio_GetWorkingDir(char *path, int len) { GetCurrentDirectory(len, path); } |
| 161 | |
| 162 | bool ddio_SetWorkingDir(const char *path) { return (SetCurrentDirectory(path)) ? true : false; } |
| 163 |
no outgoing calls
no test coverage detected