hello, thank you for sharing, I have tried your way:
<% await tp.file.move("/Work/5 - Meetings/5.2 Meetings - 1-2-1 Personal/" + tp.date.now("YYYY") + "/" + tp.file.title) %>
I made a little change to test this
<% await tp.file.move("/Untitled/" + tp.file.title) %>
it will move this file to untitled folder.
<% await tp.file.move("/" + tp.file.title + "/" + tp.file.title) %>
it will move file to the folder with the same name, I have created untitled untitled1 untitled2. but it only worked with the untitled file, after it moved the untitled file to untitled folder, it will not work for untitle1, since the templater could not create new file and reported error
I wonder if you could make this conditional. maybe use a dataview attribute to decide which folder that this file should go into.