* @brief if the Filesystem is symlink capable on both ends * */
| 1630 | * |
| 1631 | */ |
| 1632 | bool canLink(const QString& src, const QString& dst) |
| 1633 | { |
| 1634 | return canLinkOnFS(src) && canLinkOnFS(dst); |
| 1635 | } |
| 1636 | |
| 1637 | uintmax_t hardLinkCount(const QString& path) |
| 1638 | { |
nothing calls this directly
no test coverage detected