| 166 | } |
| 167 | |
| 168 | QString PathUtils::stripPath(QString path) { |
| 169 | path = toFullPath(path); |
| 170 | |
| 171 | if (path.right(1) == '/') { |
| 172 | return path.remove(path.size() - 1, 1); |
| 173 | } |
| 174 | |
| 175 | return path; |
| 176 | } |
| 177 | |
| 178 | QString PathUtils::fullStripPath(QString path) { |
| 179 | path = stripPath(path); |