| 995 | } |
| 996 | |
| 997 | void FileSystemManager::setFileAttributes(QString fileName, uint attribute) |
| 998 | { |
| 999 | if (isValidFileName(fileName)) |
| 1000 | { |
| 1001 | // Set the file attributes on this file |
| 1002 | SetFileAttributes((LPCTSTR) fileName.utf16(), attribute); |
| 1003 | } |
| 1004 | } |
| 1005 | |
| 1006 | uint FileSystemManager::getFileSize(QString filePath) |
| 1007 | { |
no outgoing calls
no test coverage detected