• @Kimjongtooill
    link
    852 months ago

    You should write a script to touch all the files before their script runs.

    • @[email protected]
      link
      fedilink
      English
      232 months ago

      Thought about it but I use modification date for sorting to have the stuff I’ve recently worked on on top. I instead keep the files where the script isn’t looking. The downside is they are not backed up so I might potentially lose them but if I don’t do that, then I’ll lose them for sure…

      • Perhyte
        link
        fedilink
        English
        282 months ago

        You don’t actually have to set all the modification dates to now, you can pick any other timestamp you want. So to preserve the order of the files, you could just have the script sort the list of files by date, then update the modification date of the oldest file to some fixed time ago, the second-oldest to a bit later, and so on.

        You could even exclude recently-edited files because the real modification dates are probably more relevant for those. For example, if you only process files older than 3 months, and update those starting from "6 months old"1, that just leaves remembering to run that script at least once a year or so. Just pick a date and put a recurring reminder in your calendar.

        1: I picked 6 months there to leave some slack, in case you procrastinate your next run or it’s otherwise delayed because you’re out sick or on vacation or something.

        • @[email protected]
          link
          fedilink
          42 months ago

          Change the date on all the files by scaling to fit the oldest file. Scale to 1 year as a safe maximum age. So if the oldest file is 1.5 years old, scale all files to be t/1.5 duration prior to now.

      • LazaroFilm
        link
        fedilink
        English
        32 months ago

        Have a script that makes a copy of all files that are 1.9 years old into a separate folder.

      • @[email protected]
        link
        fedilink
        2
        edit-2
        2 months ago

        Create a series of folders labeled with dates. Every day copy the useful stuff to the new folder. Every night change modified dates on all files to current date.