Gus Vincent Dato wrote: > hi guys, > > is there a function/syntax like findfirstfile/findnextfile that i can use to > traverse/enumerate directories? > > thanks.
Those functions traverse a single directory. You can use GetFileAttributes() to determine if each entry if a file or directory. If it is a directory, you can recursively (or use a stack) call FindFirstFile() again. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
