| 23 | #include "ui_StoragePage.h" |
| 24 | |
| 25 | qint64 getDirectorySize(QString path) |
| 26 | { |
| 27 | QDirIterator it(path, QDirIterator::Subdirectories); |
| 28 | qint64 fileSizeTotal = 0; |
| 29 | while (it.hasNext()) { |
| 30 | it.next(); |
| 31 | fileSizeTotal += it.fileInfo().size(); |
| 32 | } |
| 33 | return fileSizeTotal; |
| 34 | } |
| 35 | |
| 36 | void clearDirectoryInner(QString path) |
| 37 | { |
no test coverage detected