* @brief if the Filesystem is symlink capable on both ends * */
| 1639 | * |
| 1640 | */ |
| 1641 | bool canLink(const QString& src, const QString& dst) |
| 1642 | { |
| 1643 | return canLinkOnFS(src) && canLinkOnFS(dst); |
| 1644 | } |
| 1645 | |
| 1646 | uintmax_t hardLinkCount(const QString& path) |
| 1647 | { |
nothing calls this directly
no test coverage detected