File Listing

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

Hello,

I would like to make a form that will give me a complete file listing
for a user specified folder including thos files or folders that are hidden
by windows and various programs. How can I do this?

Thank You,

Daniel
 
dim fl as string
fl=dir("c:\",vbDirectory+vbHidden+vbReadOnly+vbSystem)
text1.text=fl
fl=dir()
while fl>""
text1.text=text1.text & vbcrlf & fl
fl=dir()
wend
 
Back
Top