public static void convertFolderOfXLSX(string folder) { string[] files = Directory.GetFiles(folder); foreach (string file in files) { if (Path.GetExtension(file) == ".xlsx") { ProcessText.convertToCSV(file, folder); } } }
private void processVariable(object sender, EventArgs e) { ProcessText process = new ProcessText(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\Variable\needed", "IDEAM", "variableIDEAM"); }
private void processBog_Buc(object sender, EventArgs e) { ProcessText process = new ProcessText(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\StationVariableBogBuc", "IDEAM", "bog_bucIDEAM"); }
private void processStation_VariableFiles(object sender, EventArgs e) { ProcessText process = new ProcessText(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\StationVariable", "IDEAM", "s_vIDEAM"); }
private void processRadiationFiles(object sender, EventArgs e) { ProcessText process = new ProcessText(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\Station_Radiation", "IDEAM", "radIDEAM"); }
private void convertRadFiles(object sender, EventArgs e) { ProcessText.convertFolderOfXLSX(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\Station_Radiation"); }