Move to a folder - Name of the folder is a variable

Hi,
I want to move documents when the folder is the name of the current year.
I suppose I can set the patch with an AppleScript
set correctpatch to POSIX file "/Users/user/Box Sync/Documents/Finances/Bills/Electricity/"
tell (current date)
set stryear to (its year as integer)
end tell
set correctpatch to POSIX file correctpatch & stryear & "/" as text
however how to I move the file to this patch ?
Edit : I suppose I just have to ignore the move option and move it through the Apple Script
I want to move documents when the folder is the name of the current year.
I suppose I can set the patch with an AppleScript
set correctpatch to POSIX file "/Users/user/Box Sync/Documents/Finances/Bills/Electricity/"
tell (current date)
set stryear to (its year as integer)
end tell
set correctpatch to POSIX file correctpatch & stryear & "/" as text
however how to I move the file to this patch ?
Edit : I suppose I just have to ignore the move option and move it through the Apple Script