-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add recursive option, db-to-html option for msg-db files. #1
Conversation
Add db-to-html
Add support for recursion, skip files if they've already been created.
Hi @jhaisley ! I like the recursive option! That should come in useful for multiple usecases. For example, with this directory structure: $$ tree test_emails
test_emails
├── nested
│ └── test_email_2 copy.eml
├── test_email_1.eml
└── test_email_2.eml
1 directory, 3 files ... if we run:
... produces:
Does that also solve your usecase? → In that case, we can make sure to better document this usage in the README to assist with such usecases. |
Additionally, about the Perhaps that is an idea for a different micropackage? |
My use case (converting from a GYB archive) could be solved with globing although not with your proposed command. $ tree . 93 directories, 339 files |
I understand that perspective. My purpose is a bit different than yours I guess, in that my goal is to convert an entire archive of a gmail account to html so that it can be preserved off of Google's system. |
Signed-off-by: Jordan Haisley <[email protected]>
Hi!
Ah that's that's great. Did you end up globbing in the code or using the terminal/shell ? |
Also, I see you're doing a great job integrating your desired additions/changes into a separate package. Shall we then close this PR? |
This is a simple update which adds a recursion flag and a db-to-html option.