-
Notifications
You must be signed in to change notification settings - Fork 69
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
Folder organizaiton options #9
Comments
There are several things here that I'll try to unpack 😄, sorry if I don't address something.
Hopefully that covers everything 😄. I'm happy that you like the scripts and I'll try to answer if you have any other questions or suggestions. |
Slowly but surely I have been learning how to get the best out of these tools. I currently have a very low successful match rate but I will raise my findings on another ticket as there is a reasonable chance this is PEBCAK. In the interim your suggestions above work great and a big thanks for taking the time to help us all with this guide. I have some relevant follow on's if it is ok For context I am using this variant with the official docker:
Is there a way to use what Calibre refers to as e.g. rather than I have still not found a way to maintain the original filename. I do not want to rename ebook files at all only organise them into folders based on their primary author. Is there a variable I can use that is the original unadulterated filename excluding path? Finally to answer your question about metadata. As you can see I am currently using the Thanks again |
As na-- mentioned, if your files are already named correctly as you want them (Author first), then you have no need to use these tools to sort them. A simple bash one-liner (as he provided in his post) works just fine: for f in *; do dir="${f:0:1}"; mkdir -p "$dir"; mv "$f" "$dir/$f"; done I would suggest that you use these tools as part of a workflow, rather than trying to view them as the be all end all of your tool kit. |
Enhancement request. Allow for identified ebooks to be organized into a predictable folder structure without renaming the ebooks themselves.
My goal is to organize all books by Author but I can imagine others may want to organise by different metadata.
Note: I may need to also add sharding as filesystems like samba typically dont do well with multi-thousand long folder lists. Sharding may be off topic for this request but included for completeness.
Example for demonstration:
From:
To:
The drivers for this are:
named correctly
as I amfiled in the correct location
Excellent work. Took me far to long to stumble uopn this excellent project idea.
The text was updated successfully, but these errors were encountered: