Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Delete Files older than a certain Filename?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01444235
Message ID:
01444297
Vues:
85
Thanks Al, Martina & Naomi for your suggestions and the clues they provided. The final solution I came up with is:
lcDeleteOlder = "20100101"   && <DeleteTriggerDate>
LOCAL ARRAY laFiles[1]

? ADIR(laFiles, (FILEPATH+"\*.dbf"))
CREATE CURSOR DelFiles (fName C(254))
APPEND FROM ARRAY laFiles FOR fName < lcDeleteOlder
SCAN
	DELETE FILE DelFiles.cFName
ENDSCAN
>I have a direcectory of tables, one for each month (yyyymm.dbf), which I need to cycle through and delete all those older than 30 days.
>
>SYS(2000) would let me cycle through all files in the directory and check if each one is older than the 30 days but this seems a very inelegant way of solving this.
>
>Can anyone think of a cleaner way of achieving this?
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform