日誌輸出--C#

來源:互聯網
上載者:User

標籤:

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;//添加引用,並匯入命名空間using System.Management;using System.Net.NetworkInformation;using System.IO;//日誌輸出類  public void SWriter(string ipname)        {            string sFilePath = "D:WebTest/LogFolder/";//指定檔案夾路徑            string sFileName = "LogOutPut"+DateTime.Now.ToString("dd")+".log";//指定檔案            sFileName = sFilePath + "/" + sFileName;//指定路徑下的檔案            ///判斷是否存在檔案夾,如果不存在則建立            if (!Directory.Exists(sFilePath))            {                Directory.CreateDirectory(sFilePath);            }            FileStream fs;//聲明檔案流            StreamWriter sw;//聲明寫入流            FileInfo fi=new FileInfo(sFileName);//初始設定檔案操作類            ///判斷是否存在檔案,如果不存在則建立            if (!fi.Exists)            {                fs = new FileStream(sFileName, FileMode.Create, FileAccess.Write);            }            else {                fs = new FileStream(sFileName,FileMode.Append,FileAccess.Write);            }            fs.Close();//凡是流(Stream)必須在最後調用.Flush();跟.Close();方法,或者圖個省事用using來處理,也可以用try-catch            using(sw = new StreamWriter(sFileName,true))            {                Console.SetOut(sw);//開啟要寫入的檔案,沒有這個則不會寫入                Console.WriteLine("“" + ipname + "”" + "的IP使用者於" + DateTime.Now + "訪問了該首頁!!!");//寫入內容            }            //StreamWriter sw = new StreamWriter(@"D:\WebTest\LogOutput.txt",true);            //Console.SetOut(sw);            //Console.WriteLine("“" + ipname + "”" + "的IP使用者於" + DateTime.Now + "訪問了該首頁!!!");            //sw.Flush();            //sw.Close();        }

日誌輸出--C#

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.