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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

returning the file names of files in a folder 2

Status
Not open for further replies.

shresthaal

Programmer
Jun 8, 2005
62
US
is there a way to return a string list of filenames of files in a folder

i need to update a table with the filenames in a folder

thank you for your help or suggestion
 
You can get an array containing the list of files in a folder using ADIR():

nFileCount = ADIR(aFileList, "*.*")

Then you can manipulate aFileList.

Tamar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top