2020年9月25日 星期五

[C#]建立文件,寫檔,刪除文件

         protected void CreateFile()

        {

            String strTxt = ".\\" TEST.txt";

            String strData = @"123456789";

            // Delete a file by using File class static method...

            if (System.IO.File.Exists(strTxt))

            {

                // Use a try block to catch IOExceptions, to

                // handle the case of the file already being

                // opened by another process.

                try

                {

                    System.IO.File.Delete(strTxt);

                }

                catch (System.IO.IOException e)

                {

                    Console.WriteLine(e.Message);

                    return;

                }

            }

            FileStream fileStream = new FileStream(strTxt, FileMode.Create);


            fileStream.Close();   //切記開了要關,不然會被佔用而無法修改喔!!!


            using (StreamWriter sw = new StreamWriter(strTxt,false))//覆寫檔案

            {

                // 欲寫入的文字資料 ~


                sw.Write(strData );

                //sw.WriteLine(DateTime.Now);

            }


        }

沒有留言:

張貼留言

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

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