You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
663 B
27 lines
663 B
using System;
|
|
|
|
namespace filename
|
|
{
|
|
/// <summary>
|
|
/// Summary description for Class1.
|
|
/// </summary>
|
|
class FileNameApp
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
ProgramOpts opts = new ProgramOpts();
|
|
|
|
if ( false == opts.CommandLine(args) )
|
|
{
|
|
return;
|
|
}
|
|
DirScan.BeginScan(opts.startDir, opts.fileFilter, opts.outputFile, opts.maxLen, opts.recurseDirs, false, true);
|
|
//Console.WriteLine("Press ENTER to Exit");
|
|
//Console.ReadLine();
|
|
}
|
|
}
|
|
}
|