topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 6:12 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Folders with "expiration date"  (Read 5086 times)

jgpaiva

  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 4,727
    • View Profile
    • Donate to Member
Folders with "expiration date"
« on: July 03, 2007, 11:26 AM »
Well... A friend of mine asked me for one interesting piece of software.
Something that would create folders with "expiration date".
These folders would have the interesting feature that would be time limited, and after that time was expired, they'd be deleted.

The idea is that sometimes you have stuff that you know you won't need after some time, thus, you could just dump those in one of these temporary folders, and it'd be deleted for you.
The objective is to avoid clutter with unnecessary files, if you already know for how much time you'll need those.

So... 2 questions:
Any Sugestions on how to implement this? (I was thinking about having a program that would monitor a folder tree, and when the user created some kind of file with info about the "expiration date" of a folder, it'd be monitored and deleted when necessary).
And..
Would you use this?

Thank you!

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Folders with "expiration date"
« Reply #1 on: July 03, 2007, 11:31 AM »
this is a fun idea.

i am always paranoid about programs that delete folders with stuff in them.

a minor modification to the idea might be, what if you had a program that either kept track of folders you told it to delete at a certain date, or else scanned directories for a special helper file like ScheduledAction.txt

and then you ran this program occasionally and it would look for this file in certain directories or else it would just have its own list of dirs to delete at certain dates, and then would prompt the user with a list of what it is about to do and get approval (or let the user do it manually and just have the program act as a reminder/helper).

app103

  • That scary taskbar girl
  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 5,884
    • View Profile
    • Donate to Member
Re: Folders with "expiration date"
« Reply #2 on: July 03, 2007, 11:40 AM »
Or a program that would allow you to drag & drop folders to it and set an expiration date for that folder, and when that date hit, it would move them to a 'smart bin', adding the delete date to the folder name, rather than moving them to the recycle bin or complete removal. (it would just be a special folder somewhere for this purpose)

After the size of that folder hits a certain mark, the application would warn you and show you a list of what was deleted & when, and you could choose which to permanently delete. This list and 'smart bin' would also allow you to restore stuff if you needed it.


f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: Folders with "expiration date"
« Reply #3 on: July 03, 2007, 06:05 PM »
I'd keep information of "watched folders" in some global database file, to avoid having to scan all partitions for those folders, which would be dog slow. And rather than deleting the folders, the program should pop up a reminder once the expiration date is hit.

But all this would still require Yet Another Always Running AppTM, or at least that the monitor app is called regularly from the windows task scheduler thingy.
- carpe noctem

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: Folders with "expiration date"
« Reply #4 on: July 03, 2007, 06:14 PM »
Can you not create/generate a one-time scheduled task for the deletion/moving/renaming of the folder at the said time the user requested? the scheduler is already running and offers you the flexibility of error codes, triggers and what not.

f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: Folders with "expiration date"
« Reply #5 on: July 03, 2007, 06:16 PM »
Can you not create/generate a one-time scheduled task for the deletion/moving/renaming of the folder at the said time the user requested? the scheduler is already running and offers you the flexibility of error codes, triggers and what not.
Yeah, you could do that, but then you might end up with a lot of entries for the task scheduler, depending on how frenzied the user is :)
- carpe noctem