Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using the File System Object to Qualify a File 2

Status
Not open for further replies.

stephenj789

Technical User
Jan 28, 2002
58
US
Hello, I would like to have a file qualified by its modified date. Here is a sample of the code I would like to use:

Code:
Dim answer As Integer
Dim f As Object, fso As Object

Set fso = CreateObject("Scripting.FileSystemObject")

f = <directory path> <filename>

If Now - f.DateLastModified > 7 Then

answer = MsgBox("The file you selected is over 1 week old, are you sure you have the correct file?", vbYesNo, "Old File")
	
	If answer = vbYes Then
	Elseif answer = vbNo Then
  	 Exit Sub
	End If
Else
End If

The code above does not work, I have just included it as a sample. What I would like to do is use the file system object to qualify a file by its modified date, but I don't know how to do it. I was unable to find any guidance for this online. Using the line:

Code:
f = fso.Getfile(<directory path> <filename>)

...doesn't work.

I am using Access 97
 



Hi,

f is an OBJECT. Yet you have not SET this object...
Code:
    Set f = fso.GetFile(filespec)


Skip,

[glasses] [red][/red]
[tongue]
 
That helps. Just something I didn't think of rather than something that was fundamentally wrong (which is what I thought it was). Thanks PHV & Skip!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top