Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2506

Show
Ignore:
Timestamp:
08/26/07 16:18:55 (1 year ago)
Author:
kris
Message:

added an unfiltered option for sweep()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/FileScan.d

    r1868 r2506  
    107107 
    108108                Sweep a set of files and directories from the given parent 
     109                path, with no filtering applied 
     110         
     111        ***********************************************************************/ 
     112         
     113        FileScan sweep (char[] path) 
     114        { 
     115                return sweep (path, (FilePath, bool){return true;}); 
     116        } 
     117 
     118        /*********************************************************************** 
     119 
     120                Sweep a set of files and directories from the given parent 
    109121                path, where the files are filtered by the given suffix 
    110122