* @brief if the Filesystem is symlink capable * */
| 1622 | * |
| 1623 | */ |
| 1624 | bool canLinkOnFS(const QString& path) |
| 1625 | { |
| 1626 | FilesystemInfo info = statFS(path); |
| 1627 | return canLinkOnFS(info); |
| 1628 | } |
| 1629 | bool canLinkOnFS(const FilesystemInfo& info) |
| 1630 | { |
| 1631 | return canLinkOnFS(info.fsType); |
no test coverage detected