コード例 #1
0
        //===========================================

        private void button7_Click(object sender, RoutedEventArgs e)
        {
            List <string> filePath_list = TheTool.dataTable_getList_fromColumn(dataTable, col_path);
            int           skip          = TheTool.getInt(txtSkipConcat);
            List <string> concat_txt    = new List <string>();

            if (checkOWSconcat.IsChecked.Value)
            {
                concat_txt = TheTool.concatFile_OWS(filePath_list, true, skip);
            }
            else
            {
                concat_txt = TheTool.concatFile(filePath_list, true, skip);
            }
            TheTool.exportFile(concat_txt, TheURL.url_saveFolder + @"concat.csv", true);
        }