MCPcopy Create free account
hub / github.com/ZDoom/Raze / RemoveFile

Function RemoveFile

source/common/utility/cmdlib.cpp:596–604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

594#endif
595
596void RemoveFile(const char* file)
597{
598#ifndef _WIN32
599 remove(file);
600#else
601 auto wpath = WideString(file);
602 _wremove(wpath.c_str());
603#endif
604}
605
606int RemoveDir(const char* file)
607{

Callers 2

WriteZipFunction · 0.85
RemoveSaveSlotMethod · 0.85

Calls 2

WideStringFunction · 0.85
c_strMethod · 0.80

Tested by

no test coverage detected