Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Check the scanning date of pic
Message
De
11/06/2008 10:01:22
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Photos et traitement d'images
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Vista
Database:
Visual FoxPro
Divers
Thread ID:
01323065
Message ID:
01323073
Vues:
23
This message has been marked as the solution to the initial question of the thread.
>oh, good.thanks but how i get the created date of pic from my folder.( I have thousand pic, I want the pic which are old than 3 year)

You can use WSH:
oWSH = CREATEOBJECT('Scripting.FileSystemObject')
oFolder = oWSH.GetFolder('d:\temp')
FOR EACH oFile IN oFolder.Files
	? oFile.Name, oFile.DateCreated
NEXT
hth
-Stefan
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform