public static string Path(this IStreamProvider streamProvider, LocationType type, string tableName, CrawlType crawlType, DateTime version)
 {
     return(System.IO.Path.Combine(type.ToString(), tableName, crawlType.ToString(), version.ToUniversalTime().ToString(DateTimeFolderFormat)));
 }
 public static string Path(this IStreamProvider streamProvider, LocationType type, string tableName, CrawlType crawlType)
 {
     return(System.IO.Path.Combine(type.ToString(), tableName, crawlType.ToString()));
 }