| 2070 | } |
| 2071 | |
| 2072 | QDir WindowsSystem::GetTrainingDirectory() |
| 2073 | { |
| 2074 | // Data directory should be in the local Application Data folder |
| 2075 | // i.e. %AppData%/Bump Technologies, Inc/BumpTop |
| 2076 | if (empty(GLOBAL(trainingPath))) |
| 2077 | GLOBAL(trainingPath) = GetDataDirectory() / "Training"; |
| 2078 | |
| 2079 | if (!exists(GLOBAL(trainingPath))) |
| 2080 | create_directory(GLOBAL(trainingPath)); |
| 2081 | |
| 2082 | return GLOBAL(trainingPath); |
| 2083 | } |
| 2084 | |
| 2085 | QDir WindowsSystem::GetTradeshowDirectory() |
| 2086 | { |