Hi,
I’m looking for a package that will allow me to configure some rules for moving folders and then watch a folder and automatically move folders or files that match rules to a certain other directory. Does something like this exist?
The use case is that I have data being saved to a single directory by other devices, and then I would like to reorganize it based on the file or folder name.
Or anyone have any other ideas of how to do this?
You can use find utility for that. I’m not at Linux machine right now, so maybe I can make mistake in commands, but something like this should work:
In this example, command find every file containing “type1name” in its name in folder /path/to/data/folder and move it into /path/to/dest/folder.
So if you have folder “~/data/all_data” containing files like “temperature_2023-06-30.csv”, " temperature_2023-06-29.csv", “power_2023-06-30.csv” and “power_2023-06-29.csv”, do:
More, you can tweak it into for examplee filtering according to current date and run that script every day.