whats faster?

Goggy

Newcomer
Joined
May 10, 2006
Messages
8
iam used to vb 6 ...but going now to .net....
i was wondering whats faster in .net.... old Dir,FSO(scripting) or the System.IO.Directory class.
 
If you're using .Net, I'd use the System.IO.Directory class just out of ease of use. If there is a speed difference, it will be negligible.
 
I'd use the System.IO.Directory because of it's was built to do the job. It's not faster or slower but you can handle exception and benefit from all the methods that have been included inside of it.

Cheers
 
Back
Top