tehon3299 Posted February 21, 2003 Posted February 21, 2003 Can you please tell me how I would be able to read the whole contents of a folder of pictures and output a list of the files on an aspx page? Quote Thanks, Tehon
*Gurus* Derek Stone Posted February 21, 2003 *Gurus* Posted February 21, 2003 Dim sFiles() As String = System.IO.Directory.GetFiles("C:\") You can also specify a search pattern like so: Dim sFiles() As String = System.IO.Directory.GetFiles("C:\", "*.bmp") Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.