774 snippets from 1587 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(138)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
mysql
(25)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Clean PHP Templat...
PHP/MySQL impleme...
Analyte - Easy to...
Easy SQLite inter...
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Store Procedure
Venture Capital Jobs
New Members
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
impomatic
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
List Files in a Directory in VB.NET
/
Comments
List Files in a Directory in VB.NET
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
better performance
Tue. Sep. 5th, 2006 7:19 PM
jbplou
You would get better performance if you did not use implicit casting so this line
For Each myFile in Directory.GetFiles(Server.MapPath(YOUR_DIRECTORY), "*.gif")
should be changed to
For Each myFile as String in Directory.GetFiles(Server.MapPath(YOUR_DIRECTORY), "*.gif")
Reply
New Comment
should be changed to
For Each myFile as String in Directory.GetFiles(Server.MapPath(YOUR_DIRECTORY), "*.gif")