Hi. try:
find <path to dir> -mtime +365 -exec ls -la {} \;
To check that you're picking up what you want, then:
find <path to dir> -mtime +365 -exec rm {} \;
to delete them. If there are too many, try:
find <path to dir> -mtime +365 | xargs rm {}
You can also add a -name '*.txt', say, depending on your
file extension, to pick up only those files you want.