* @brief if the Filesystem is reflink/clone capable * */
| 1235 | * |
| 1236 | */ |
| 1237 | bool canCloneOnFS(const QString& path) |
| 1238 | { |
| 1239 | FilesystemInfo info = statFS(path); |
| 1240 | return canCloneOnFS(info); |
| 1241 | } |
| 1242 | bool canCloneOnFS(const FilesystemInfo& info) |
| 1243 | { |
| 1244 | return canCloneOnFS(info.fsType); |
no test coverage detected