MCPcopy Create free account
hub / github.com/NatLabRockies/EnergyPlus / removeFile

Function removeFile

src/EnergyPlus/FileSystem.cc:324–331  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

322 }
323
324 bool removeFile(fs::path const &filePath)
325 {
326 if (!fileExists(filePath)) {
327 return false;
328 }
329
330 return fs::remove(filePath);
331 }
332
333 void linkFile(fs::path const &filePath, fs::path const &linkPath)
334 {

Callers 7

ProcessArgsFunction · 0.85
runReadVarsESOFunction · 0.85
delMethod · 0.85
initDaylightingFunction · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85

Calls 1

fileExistsFunction · 0.85

Tested by

no test coverage detected