示例#1
0
        /// <summary>
        /// 检查表数据按钮
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button5_Click(object sender, EventArgs e)
        {
            if (!button5.Enabled)
            {
                return;
            }

            string error = Facade.ParseCheckerUserInput();

            if (error != null)
            {
                ShowMessageBox(error);
                return;
            }

            CheckeCallbackArgv argv = new CheckeCallbackArgv();

            argv.OnRunChanged = OnRunCheckerChanged;

            Facade.BeforeCheckerOptionForm();
            this.BeforeCheckerForm();
            Facade.RunCheckerXlsx(argv);
            this.AfterCheckerForm();
            Facade.AfterCheckerOptionForm();
        }
示例#2
0
        /// <summary>
        /// 检查运行器
        /// </summary>
        /// <param name="form"></param>
        /// <returns></returns>
        public static void RunCheckerXlsx(CheckeCallbackArgv argv)
        {
            if (argv == null)
            {
                throw new Exception("Run xlsx form argv is null.");
            }

            if (argv.OnRunChanged != null)
            {
                argv.OnRunChanged("=================检查开始=================");
            }

            OptionsForm optionForm = DataMemory.GetOptionsFrom();

            if (optionForm.XlsxSrcPath.Length <= 0)
            {
                return;
            }
            if (!Directory.Exists(optionForm.XlsxSrcPath))
            {
                return;
            }

            string[] files = Directory.GetFiles(optionForm.XlsxSrcPath, "*.xlsx", SearchOption.AllDirectories);
            if (files.Length <= 0)
            {
                return;
            }
            // 注意xlsx文件命名规则: 标号_英文名_中文名
            foreach (string file in files)
            {
                string   fileName        = string.Empty;
                string   xlsxOutExtName  = Path.GetFileNameWithoutExtension(file);
                string   xlsxWithExtName = Path.GetFileName(file);
                string[] xlsxNameArray   = xlsxOutExtName.Split('_');
                if (xlsxNameArray.Length <= 1)
                {
                    if (argv.OnRunChanged != null)
                    {
                        argv.OnRunChanged(string.Format("{0}    name error", xlsxWithExtName));
                    }
                }
                else
                {
                    if (argv.OnRunChanged != null)
                    {
                        argv.OnRunChanged(string.Format("{0}    ok", xlsxWithExtName));
                    }
                }
                Thread.Sleep(10);
            }
            if (argv.OnRunChanged != null)
            {
                argv.OnRunChanged("=================检查完毕=================");
            }
        }