view tango/example/conduits/filescanregex.d @ 373:d1574e142e93 trunk

[svn r394] Fixed the new DtoNullValue function
author lindquist
date Tue, 15 Jul 2008 15:16:56 +0200
parents 1700239cab2e
children
line wrap: on
line source

/**************************************************************

    Example that use FileScan and Regex as a filter.

    Put into public domain by Lars Ivar Igesund

**************************************************************/

import tango.io.File,
       tango.io.Stdout,
       tango.io.FileScan,
       tango.text.Regex;

void main(char[][] args) {
    uint total;

    if (args.length < 2) {
        Stdout("Please pass a directory to search").newline;
        return;
    }

    scope scan = new FileScan;
    scope regex =  Regex(r"\.(d|obj)$");

    scan(args[1], delegate bool (FilePath fp, bool isDir) {
         ++total;
         return isDir || regex.test(fp.toString);
    });


    foreach (file; scan.files)
             Stdout(file).newline;

    Stdout.formatln("Found {} matches in {} entries", scan.files.length, total);

    Stdout.formatln ("\n{} Errors", scan.errors.length);
    foreach (error; scan.errors)
             Stdout (error).newline;
}