Leaked source code of windows server 2003
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

  1. using System;
  2. namespace filename
  3. {
  4. /// <summary>
  5. /// Summary description for Class1.
  6. /// </summary>
  7. class FileNameApp
  8. {
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main(string[] args)
  14. {
  15. ProgramOpts opts = new ProgramOpts();
  16. if ( false == opts.CommandLine(args) )
  17. {
  18. return;
  19. }
  20. DirScan.BeginScan(opts.startDir, opts.fileFilter, opts.outputFile, opts.maxLen, opts.recurseDirs, false, true);
  21. //Console.WriteLine("Press ENTER to Exit");
  22. //Console.ReadLine();
  23. }
  24. }
  25. }