T technodwebe Oct 6, 2006 #1 If you're trying to create a fast file find function that will work in both XP-32 and XP-64, what method would you use?
If you're trying to create a fast file find function that will work in both XP-32 and XP-64, what method would you use?
M Michael D. Ober Oct 7, 2006 #2 Are you handling one file at a time or will a collection of files be sufficient. If it's one at a time, take a look at the VB legacy "dir" statement and function. If a collection will suffice, take a look at the system.io.directory namespace. Mike Ober.
Are you handling one file at a time or will a collection of files be sufficient. If it's one at a time, take a look at the VB legacy "dir" statement and function. If a collection will suffice, take a look at the system.io.directory namespace. Mike Ober.
H Herfried K. Wagner [MVP] Oct 7, 2006 #3 technodwebe said: If you're trying to create a fast file find function that will work in both XP-32 and XP-64, what method would you use? Click to expand... Depending on the exact situation I'd recursively call 'System.IO.Directory.GetFiles'.
technodwebe said: If you're trying to create a fast file find function that will work in both XP-32 and XP-64, what method would you use? Click to expand... Depending on the exact situation I'd recursively call 'System.IO.Directory.GetFiles'.
V vb newbie Oct 8, 2006 #4 Thanks! That worked really well. It's a lot slower than the API, but you use whatcha got