-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLI parameter to switch between: use symlink, hardlink, or copy #10
Comments
Support for hardlinks got added with 49179d4. |
Negative impact of using copy instead of links need to be investigated. This could really fill up disk space easily. Therefore, I'm unsure if this idea is still worth following. |
As a comment:
~/archive$ filetags --filter --hardlinks --recursive (already) yields self sufficient files one may sent e.g., by email to a colleague (if the OS supports hardlinks); this equally may «saturate» a disk partition/thumb drive. On the other hand, if I drop |
Careful: when using hardlinks, the situation is somewhat non-intuitive for somebody not familiar with the implementation details of symbolic and hard links. For example, you get disk usage reported multiple times via listing directory contents (containing hard links) separately although the overall free disk space is not (or minimal) changed. So you can't use this criteria to compare disk usage. AFAIR symbolic links use one inode size per link and hardlinks may only use a directory entry which is smaller than an inode if I remember correctly. |
Non-Windows systems do not only know lnk files but also symbolic links and hard links.
I'd like to be able to choose for tagtrees and filter functionality whether or not (1) lnk files or symlinks are being used (2) hard links are used or (3) file get copied instead.
The text was updated successfully, but these errors were encountered: