2020年9月25日 星期五

[c#]建創資料夾 取得目前檔案路徑資料夾

         protected void CreateDataTemp()

        {

            string TempPath = System.Windows.Forms.Application.StartupPath + @"\要建立資料夾名稱\";

            if (Directory.Exists(TempPath))

            {

                //資料夾存在

            }

            else

            {

                //新增資料夾

                Directory.CreateDirectory(TempPath);

            }

        }

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...