예제 #1
0
        public void LogOutput(string log)
        {
            string timestr = DateTime.Now.ToString("HH:mm:ss");

            OputTextBox.AppendText(timestr + "  " + log + "\r\n");
            //OputTextBox.w
        }
예제 #2
0
 public void Browse(String rootPath, String outputPath, int count)
 {
     try
     {
         CopyAndRename(outputPath, new DirectoryInfo(rootPath), Tools.CountFolder(rootPath));
     }
     catch (IOException e)
     {
         Console.WriteLine(e.Message);
         OputTextBox.AppendText($"{e.Message}\r\n");
     }
 }