findFilesMatchingGlobs

Calls delegates on files in the given path that match any globs.

If a directory matches a glob, the delegate is called on all existing files inside it recursively in depth-first pre-order.

  1. void findFilesMatchingGlobs(NativePath path, string[] globList, void delegate(string file) addFile, void delegate(string dir) addDir)
  2. void findFilesMatchingGlobs(NativePath path, string[] globList, void delegate(string file) addFile)
    void
    findFilesMatchingGlobs
    (
    in NativePath path
    ,
    in string[] globList
    ,
    void delegate
    (
    string file
    )
    addFile
    )

Meta