Loop through a directory

G

Guest

How can I loop through a directory and put into a table the file name of say
anything that begins with abc*.txt? I am using Access 2003.
 
K

Ken Snell \(MVP\)

Loop through a directory:

Dim strFile As String
Const strPath As String = "C:\YourFolder\"
strFile = Dir(strPath & "abc*.txt")
Do While strFile <> ""
' strFile contains the file name (e.g., abcFirstFile.txt)
' you can do what you want with it and strPath
' ( put code steps here )
'
' ( end of your code steps )
' read name of next file
strFile = Dir()
Loop


Do you know how to open a recordset and write data to a table?
 
G

Guest

Worked like a dream. Thank you.



--
M. Shipp


Ken Snell (MVP) said:
Loop through a directory:

Dim strFile As String
Const strPath As String = "C:\YourFolder\"
strFile = Dir(strPath & "abc*.txt")
Do While strFile <> ""
' strFile contains the file name (e.g., abcFirstFile.txt)
' you can do what you want with it and strPath
' ( put code steps here )
'
' ( end of your code steps )
' read name of next file
strFile = Dir()
Loop


Do you know how to open a recordset and write data to a table?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top