MCPcopy Create free account
hub / github.com/PrismLauncher/PrismLauncher / removeFiles

Function removeFiles

launcher/FileSystem.cpp:1714–1723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1712 return newFileName;
1713}
1714bool removeFiles(QStringList listFile)
1715{
1716 bool ret = true;
1717 // For each file
1718 for (int i = 0; i < listFile.count(); i++) {
1719 // Remove
1720 ret = ret && QFile::remove(listFile.at(i));
1721 }
1722 return ret;
1723}
1724} // namespace FS

Callers 2

extractSubDirFunction · 0.85
extractZipMethod · 0.85

Calls 3

removeFunction · 0.85
countMethod · 0.45
atMethod · 0.45

Tested by

no test coverage detected