| 920 | } |
| 921 | |
| 922 | QString FileSystemManager::getFileExtension(QString filePath) |
| 923 | { |
| 924 | QFileInfo info(filePath); |
| 925 | if (info.filePath().contains(".") && !info.suffix().isEmpty()) |
| 926 | return QString(".") + info.suffix().toLower(); |
| 927 | return QString(); |
| 928 | } |
| 929 | |
| 930 | Watchable *FileSystemManager::getWatchObjFromPath(QString filePath) |
| 931 | { |
no test coverage detected