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);
         }
     }
 }
示例#2
0
 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");
 }
示例#3
0
 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");
 }
示例#4
0
 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");
 }
示例#5
0
 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");
 }
示例#6
0
 private void convertRadFiles(object sender, EventArgs e)
 {
     ProcessText.convertFolderOfXLSX(@"C:\Users\Admin\Documents\projects\IAPP\piloto\Climate\IDEAM\data\Station_Radiation");
 }