Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.Title = "PSKS0113B_店舗在庫情報取得";
            String sourcePath                 = @"\\192.168.0.14\ablesoft\CONPHAS-GENERAL\DATA";
            String targetPath                 = @"F:\Development\ShopData";
            M_MultiPorpose_Entity mme         = new M_MultiPorpose_Entity();
            PSKS0113B_BL          PSKS0113Bbl = new PSKS0113B_BL();

            mme = PSKS0113Bbl.M_MultiPurpose_Select();

            while (mme.Num1 == "0")
            {
                Console.WriteLine("Stop");
                Thread.Sleep(Convert.ToInt32(mme.Num2) * 1000);
                mme = PSKS0113Bbl.M_MultiPurpose_Select();
            }

            #region copy file

            string fileName = "FreeDAT.mdb";
            string s        = System.IO.Path.Combine(sourcePath, fileName);
            string destFile = System.IO.Path.Combine(targetPath, fileName);
            string shopFlag = "0";
            if (File.Exists(s))
            {
                System.IO.File.Copy(s, destFile, true);
                shopFlag = "1";
            }

            #endregion

            Console.WriteLine("Import Start!");
            if (PSKS0113Bbl.ImportShopData(shopFlag))
            {
                if (shopFlag.Equals("1"))
                {
                    System.IO.File.Delete(destFile); // delete file after import data
                }
            }
            else
            {
            }
        }
Exemplo n.º 2
0
        //static String sourcePath = ConfigurationManager.AppSettings["SourcePath"].ToString();
        //static String targetPath = ConfigurationManager.AppSettings["TargetPath"].ToString();

        public static void Main(string[] args)
        {
            String sourcePath                 = @"\\192.168.0.14\ablesoft\CONPHAS-GENERAL\DATA";
            String targetPath                 = @"F:\Development\ShopData";
            M_MultiPorpose_Entity mme         = new M_MultiPorpose_Entity();
            PSKS0113B_BL          PSKS0113Bbl = new PSKS0113B_BL();

            mme = PSKS0113Bbl.M_MultiPurpose_Select();

            while (mme.Num1 == "0")
            {
                Console.WriteLine("Stop");
                Thread.Sleep(Convert.ToInt32(mme.Num2) * 1000);
                mme = PSKS0113Bbl.M_MultiPurpose_Select();
            }

            #region copy file

            string fileName = "FreeDAT.mdb";
            string s        = System.IO.Path.Combine(sourcePath, fileName);
            string destFile = System.IO.Path.Combine(targetPath, fileName);
            System.IO.File.Copy(s, destFile, true);

            #endregion

            Console.WriteLine("Import Start!");
            if (PSKS0113Bbl.ImportShopData())
            {
                System.IO.File.Delete(destFile); // delete file after import data
                Console.WriteLine("Finished");
            }
            else
            {
                Console.WriteLine("Error");
                Console.ReadLine();
            }
        }