public static int USCensusRecords(string usCensus) { //check file type bool type = CSVOperations.CheckFileType(usCensus, ".csv"); string[] records = CSVOperations.ReadCSVFile(usCensus); //check for Number of Records int count = CSVOperations.CountRecords(records); return(count); }
/// <summary> ///Method to find Number of records in file for StateCode csv file /// </summary> /// <param name="stateCode"> State Code data path </param> /// <param name="delimiter"> Delimiter </param> /// <param name="header"> Header </param> /// <returns> Data count,delimiter,header </returns> public static int GetDataFromCSVFile(string stateCode, char delimiter = ',', string header = "SrNo,State,TIN,StateCode") { //check file type bool type = CSVOperations.CheckFileType(stateCode, ".csv"); string[] records = CSVOperations.ReadCSVFile(stateCode); //check for delimiter bool delimit = CSVOperations.CheckForDelimiter(records, delimiter); //check for delimiter bool head = CSVOperations.CheckForHeader(records, header); //check for Number of Records int count = CSVOperations.CountRecords(records); return(count); }
public static int NumberOfRecords(string filePath, char delimiter = ',', string header = "State,Population,AreaInSqKm,DensityPerSqKm") { //check for filetype bool type = CSVOperations.CheckFileType(filePath, ".csv"); string[] records = CSVOperations.ReadCSVFile(filePath); //check for delimiter bool delimit = CSVOperations.CheckForDelimiter(records, delimiter); //check for Header bool head = CSVOperations.CheckForHeader(records, header); //check for Number of Records int count = CSVOperations.CountRecords(records); return(count); }