* @brief if the Filesystem is reflink/clone capable * */
| 1244 | * |
| 1245 | */ |
| 1246 | bool canCloneOnFS(const QString& path) |
| 1247 | { |
| 1248 | FilesystemInfo info = statFS(path); |
| 1249 | return canCloneOnFS(info); |
| 1250 | } |
| 1251 | bool canCloneOnFS(const FilesystemInfo& info) |
| 1252 | { |
| 1253 | return canCloneOnFS(info.fsType); |
no test coverage detected