MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / deleteFile

Method deleteFile

lib/vfs/fatfs.cc:186–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184 }
185
186 void deleteFile(const Path& path) override
187 {
188 mount();
189 auto pathstr = toUpper(path.to_str());
190 FRESULT res = f_unlink(pathstr.c_str());
191 throwError(res);
192 }
193
194 void moveFile(const Path& oldPath, const Path& newPath) override
195 {

Callers

nothing calls this directly

Calls 2

toUpperFunction · 0.85
to_strMethod · 0.80

Tested by

no test coverage detected