Skip to content

Crawler is a C# Class to crawl directories to get files from them. Useful, and still in Beta

Notifications You must be signed in to change notification settings

chrisbaldwinj/Crawler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Crawler

Crawler is a C# Class to crawl directories to get files from them. Useful, and still in Beta

Turning Debug Log File Off

  Crawl.__DEBUG__ = false;

Clearing the Debug Log File

  Crawl.ClearLog();

Instantiating The Crawl

  Crawl myCrawl = new Crawl(string directory);
  Crawl myCrawl = new Crawl(string directory,bool deep);
  Crawl myCrawl = new Crawl(string directory, string extensions);
  Crawl myCrawl = new Crawl(string directory,bool deep, string extensions);

Storing the Files from Crawl

  List <FileDef> myList = myCrawl.Files;

Upcoming Changes

  List <DirDef> myDirs = myCrawl.Directories;
  List <TreeView> myTree = myCrawl.Tree;

About

Crawler is a C# Class to crawl directories to get files from them. Useful, and still in Beta

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages