Watch folder?
See original GitHub issueHello, is there a way to watch folders for changes and then trigger organize
?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Watch Folders - IBM
Watch Folders enables large-scale, automated file and directory transfers, including ultra-large directories with over 10 million items and directories with ...
Read more >What is a Watch Folder? - Encoding.com Help
A watch folder is a directory that's specified to be polled periodically by an encoding platform for new content. When new content arrives, ......
Read more >Watch Folders for macOS - Frame.io
A brand new way to move your media. Designed for video. Ideal for dailies. Send your raw assets and WIP to Frame.io for...
Read more >Watch Folder - Mendeley Resource Center - Google Sites
What is a Watch Folder? It is nothing more than one (or more) folder(s) that you designate as being under surveillance by Mendeley...
Read more >Folder Watch
Folder Watch is a convenient, automated way to add documents to SmartOffice. Folder Watch monitors one or more folders on your computer for...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is not integrated into organize itself, but a solution might be available for your OS:
inotifywait
(https://askubuntu.com/a/819290)fswatch
(https://stackoverflow.com/a/25524053/300783)Watch 4 Folder
(https://www.raymond.cc/blog/3-portable-tools-monitor-files-folders-changes/)But this is something that could be interesting for a lot of users. So thank you for the suggestion, I added to the todo list 👍
Some code examples for how to get this working under each OS would be really helpful here. I’ve been tinkering with this on Linux and actually had more luck with
inotify-hookable
thaninotify-tools
.inotify-hookable
can be installed via most package managers. I’m on Kubuntu and so just usedsudo apt install inotify-hookable
.Basic docs: https://metacpan.org/pod/App::Inotify::Hookable
-w ~/Downloads
Watches my~/Downloads
directory.-c "organize run"
sets up the command to run when a file in my watched directory is modified.--no-r
disables recursive watching which is enabled my default.&
runs the process in the background (omitting this gave me troubles logging back in, naturally).Loving organize btw. Just started messing around with it yesterday. As a previous macOS Hazel user this is an itch I’ve been looking to scratch on Linux for some time 😃