Operating System - OpenVMS
1753851 Members
7344 Online
108807 Solutions
New Discussion юеВ

how delete files before date

 
SOLVED
Go to solution
Luciano Quaglia
New Member

how delete files before date

I've to create a dcl procedure (so I can schedule it) in order to delete files in a directory, but delete only files older than 15 days ago.

How can I delete files in a directory older than "15 days" before today ?

best regards,
any help would be appreciated !
Luciano

6 REPLIES 6
Ian Miller.
Honored Contributor
Solution

Re: how delete files before date

$ DELETE/BEFORE="TODAY-15-00:00"/LOG/NOCONFIRM filename

should do it.
____________________
Purely Personal Opinion
atul sardana
Frequent Advisor

Re: how delete files before date

For example delete the .OBJ files in subdirectory of testfiles

$ DELETE/NOCONFIRM/SINCE=Time[MEIER.TESTFILES]*.OBJ;*

You can specify time as absolute time, as a combination of absolute and delta times, or as one of the following keywords:BOOT, LOGIN, TODAY (default), TOMORROW, or YESTERDAY. Specify one of the following qualifiers with the /SINCE qualifier to indicate the time attribute to be used as the basis for selection.
I love VMS
atul sardana
Frequent Advisor

Re: how delete files before date

Absolute time includes a specific date or time of day. An absolute date/time has one of the following formats:

dd-mmm-yyyy
hh:mm:ss.cc
dd-mmm-yyyy:hh:mm:ss.cc
"dd-mmm-yyyy hh:mm:ss.cc"
BOOT
LOGIN
TODAY
TOMORROW
YESTERDAY
You can omit any of the trailing fields in the date or time. You can omit any of the fields in the middle of the format as long as you specify the punctuation marks, for example, "-mmm-yyyy hh".

Atul sardana
I love VMS
Dean McGorrill
Valued Contributor

Re: how delete files before date

I used to use purge like..

$ purge/before="TODAY-15-00:00"

..keeps at least one version around.
Robert Gezelter
Honored Contributor

Re: how delete files before date

Luciano,

The TODAY can also be implicit, as in:

$ DELETE/LOG/BEFORE=-15-00:00:00 or
$ DELETE/LOG/BEFORE=-15-0

- Bob Gezelter, http://www.rlgsc.com
Luciano Quaglia
New Member

Re: how delete files before date

thx about your response. very helpful.