Using File Globs
/**
* @path.hint file or directory to interact with.
**/
function run( required Globber path ) { }Globber.count()
function run( required Globber path ) {
print.line( path.count() & ' files affected!' );
}Globber.apply( ... )
function run( required Globber path ) {
path.apply( function( thisPath ){
print.line( 'Processing file ' & thisPath );
} );
}Globber.matches()
Globber.asQuery()
Globber.asArray()
Globber.withSort( ... )
Globber.getPattern()
Last updated
Was this helpful?