Be careful when using the above solutions, I used them and ended up moving all files in all subfolders!!!!
This command moves all files in /source directory and all subfolders under source directory:
find /sourcedirectory -mtime +365 -exec mv "{}" /destination/directory/ \;
Instead, use option -maxdepth 1 for only files in /sourcedirectory
find /sourcedirectory -maxdepth 1 -mtime +365 -exec mv "{}" /destination/directory/ \;