* @brief if the Filesystem is symlink capable * */
| 1613 | * |
| 1614 | */ |
| 1615 | bool canLinkOnFS(const QString& path) |
| 1616 | { |
| 1617 | FilesystemInfo info = statFS(path); |
| 1618 | return canLinkOnFS(info); |
| 1619 | } |
| 1620 | bool canLinkOnFS(const FilesystemInfo& info) |
| 1621 | { |
| 1622 | return canLinkOnFS(info.fsType); |
no test coverage detected