| 83 | } |
| 84 | |
| 85 | bool ChatFileManager::isFileAccessible(const QString &filePath) |
| 86 | { |
| 87 | QFileInfo fileInfo(filePath); |
| 88 | return fileInfo.exists() && fileInfo.isFile() && fileInfo.isReadable(); |
| 89 | } |
| 90 | |
| 91 | void ChatFileManager::cleanupGlobalIntermediateStorage() |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected