Windows Thread, Short term share in Technical; I want to create a short term share, one that will be empty every Monday morning.
The reason behind this ...
-
28th November 2007, 03:12 PM #1 Short term share
I want to create a short term share, one that will be empty every Monday morning.
The reason behind this is teachers claiming they need to have an area to collect students work but want it to be deleted at the end of the week.
Well no problem there I thought I would just schedule a bat file to delete the directory on Friday nights simple. but no.
del command only deletes files not folders or at least I thought so I found a reference to /s switch that should delete folders but it won't for me.
And it seems deltree won't work with a wildcard
Anyone got another suggestion. I need the share to always remain but the contents to be deleted on a weekly basis
-
-
IDG Tech News
-
28th November 2007, 03:23 PM #2 Re: Short term share
what about recursively deleting files that are over 1 week old
-
-
28th November 2007, 03:24 PM #3
-
-
28th November 2007, 03:49 PM #4 Re: Short term share
DEL /S C:/PATH/to/BASEDIR/*.*
obviously *.* will delete everything, best to try it on a test directory first just to ensure it works how you want it to.
-
-
28th November 2007, 03:55 PM #5 Re: Short term share
/S doesn't seem to delete folders either
I have been trying
DEL /S/f/q C:/PATH/to/BASEDIR/*.*
and
DEL /s/f/q C:/PATH/to/BASEDIR/*.*
-
-
28th November 2007, 04:00 PM #6 Re: Short term share
http://www.daniweb.com/forums/thread61479.html
May take a lil while to load the page but hopefully that helps
-
-
28th November 2007, 04:06 PM #7 Re: Short term share
Follow up
CD "FULLPATHTODIRTOBECLEANED"
DEL *.* /Q
with
for /D %I in (*) do RMDIR "%I" /S /Q
DEL *.* will delete contents in the top level folder
The FOR will loop and remove all directories and their subdirectories.
In a batch file you'll need %%I, on the command line %I
HTH
-
-
28th November 2007, 04:18 PM #8 Re: Short term share
Thanks OutToLunch that works
-
SHARE: 
Similar Threads
-
By gwendes in forum General Chat
Replies: 45
Last Post: 10th February 2007, 05:38 PM
-
By pinemarten in forum General Chat
Replies: 0
Last Post: 30th June 2006, 03:57 PM
-
By Norphy in forum General Chat
Replies: 71
Last Post: 31st May 2006, 09:50 AM
-
By Alex in forum General Chat
Replies: 17
Last Post: 3rd August 2005, 11:21 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules