Move existing notes to new folder

The auto note mover plugin is great for moving new/renamed notes that match a subject keyword, it’s brilliant actually.

But I want to do an initial move of notes that match a keyword, has anyone come up with a good way, perhaps using some external tool outside of the ecosystem?

You don’t say what operating system you are on. On a Mac you could probably use Hazel, but I wouldn’t know for other systems.

Apologies, windows. I figured out a solution using PowerShell, this example finds and moves all notes with the word car in the title:

Get-ChildItem -Path ‘G:\My Drive\notes\General’ -File | Where-Object -FilterScript {$_.Name -match “\bcar\b”} | Move-Item -Destination ‘G:\My Drive\notes\car’

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.