| 654 | } |
| 655 | |
| 656 | bool FileSystemManager::createDirectory(QString dirPath) |
| 657 | { |
| 658 | // Create a directory |
| 659 | return CreateDirectory((LPCTSTR) dirPath.utf16(), NULL) ? true : false; |
| 660 | } |
| 661 | |
| 662 | void FileSystemManager::createShortcut(QString shortcutFilePath, QString pathToTarget, QString desc) |
| 663 | { |