【轉】C#添加修改刪除檔案檔案夾大全

來源:互聯網
上載者:User

標籤:html   oid   記錄檔   encoding   res   app   大小   執行個體   port   

【轉】C#添加修改刪除檔案檔案夾大全

C#添加修改刪除檔案檔案夾大全

StreamWriter sw = File.AppendText(Server.MapPath(".")+"\\myText.txt");
sw.WriteLine("追逐理想");
sw.WriteLine("kzlll");
sw.WriteLine(".NET筆記");
sw.Flush();
sw.Close();
C#拷貝檔案
string OrignFile,NewFile;
OrignFile = Server.MapPath(".")+"
\\myText.txt";
NewFile = Server.MapPath(".")+"
\\myTextCopy.txt";
File.Copy(OrignFile,NewFile,true);

C#刪除檔案
string delFile = Server.MapPath(".")+"
\\myTextCopy.txt";
File.Delete(delFile);

C#移動檔案
string OrignFile,NewFile;
OrignFile = Server.MapPath(".")+"
\\myText.txt";
NewFile = Server.MapPath(".")+"
\\myTextCopy.txt";
File.Move(OrignFile,NewFile);

C#建立目錄
// 建立目錄c:\sixAge
DirectoryInfo d=Directory.CreateDirectory("c:\\sixAge");
// d1指向c:\sixAge\sixAge1
DirectoryInfo d1=d.CreateSubdirectory("sixAge1");
// d2指向c:\sixAge\sixAge1\sixAge1_1
DirectoryInfo d2=d1.CreateSubdirectory("sixAge1_1");
// 將目前的目錄設為c:\sixAge
Directory.SetCurrentDirectory("c:\\sixAge");
// 建立目錄c:\sixAge\sixAge2
Directory.CreateDirectory("sixAge2");
// 建立目錄c:\sixAge\sixAge2\sixAge2_1
Directory.CreateDirectory("sixAge2\\sixAge2_1");

遞迴刪除檔案夾及檔案
<%@ Page Language=C#%>
<%@ Import namespace="System.IO"%>
<Script runat=server>
public void DeleteFolder(string dir)
{
if (Directory.Exists(dir)) //如果存在這個檔案夾刪除之
{
foreach(string d in Directory.GetFileSystemEntries(dir))
{
if(File.Exists(d))
File.Delete(d); //直接刪除其中的檔案
else
DeleteFolder(d); //遞迴刪除子檔案夾
}
Directory.Delete(dir); //刪除已空檔案夾
Response.Write(dir+" 檔案夾刪除成功");
}
else
Response.Write(dir+" 該檔案夾不存在"); //如果檔案夾不存在則提示
}

protected void Page_Load (Object sender ,EventArgs e)
{
string Dir="D:\\gbook\\11";
DeleteFolder(Dir); //調用函數刪除檔案夾
}


// ======================================================
// 實現一個靜態方法將指定檔案夾下面的所有內容copy到目標檔案夾下面
// 如果目標檔案夾為唯讀屬性就會報錯。
// April 18April2005 In STU
// ======================================================
public static void CopyDir(string srcPath,string aimPath)
{
try
{
// 檢查目標目錄是否以目錄分割字元結束如果不是則添加之
if(aimPath[aimPath.Length-1] != Path.DirectorySeparatorChar)
aimPath += Path.DirectorySeparatorChar;
// 判斷目標目錄是否存在如果不存在則建立之
if(!Directory.Exists(aimPath)) Directory.CreateDirectory(aimPath);
// 得到來源目錄的檔案清單,該裡面是包含檔案以及目錄路徑的一個數組
// 如果你指向copy目標檔案下面的檔案而不包含目錄請使用下面的方法
// string[] fileList = Directory.GetFiles(srcPath);
string[] fileList = Directory.GetFileSystemEntries(srcPath);
// 遍曆所有的檔案和目錄
foreach(string file in fileList)
{
// 先當作目錄處理如果存在這個目錄就遞迴Copy該目錄下面的檔案
if(Directory.Exists(file))
CopyDir(file,aimPath+Path.GetFileName(file));
// 否則直接Copy檔案
else
File.Copy(file,aimPath+Path.GetFileName(file),true);
}
}
catch (Exception e)
{
MessageBox.Show (e.ToString());
}
}

// ======================================================
// 實現一個靜態方法將指定檔案夾下面的所有內容Detele
// 測試的時候要小心操作,刪除之後無法恢複。
// April 18April2005 In STU
// ======================================================
public static void DeleteDir(string aimPath)
{
try
{
// 檢查目標目錄是否以目錄分割字元結束如果不是則添加之
if(aimPath[aimPath.Length-1] != Path.DirectorySeparatorChar)
aimPath += Path.DirectorySeparatorChar;
// 得到來源目錄的檔案清單,該裡面是包含檔案以及目錄路徑的一個數組
// 如果你指向Delete目標檔案下面的檔案而不包含目錄請使用下面的方法
// string[] fileList = Directory.GetFiles(aimPath);
string[] fileList = Directory.GetFileSystemEntries(aimPath);
// 遍曆所有的檔案和目錄
foreach(string file in fileList)
{
// 先當作目錄處理如果存在這個目錄就遞迴Delete該目錄下面的檔案
if(Directory.Exists(file))
{
DeleteDir(aimPath+Path.GetFileName(file));
}
// 否則直接Delete檔案
else
{
File.Delete (aimPath+Path.GetFileName(file));
}
}
//刪除檔案夾
System.IO .Directory .Delete (aimPath,true);
}
catch (Exception e)
{
MessageBox.Show (e.ToString());
}
}

需要引用命名空間:
using System.IO;

/// <summary>
/// 拷貝檔案夾(包括子檔案夾)到指定檔案夾下,源檔案夾和目標檔案夾均需絕對路徑. 格式: CopyFolder(源檔案夾,

目標檔案夾);
/// </summary>
/// <param name="strFromPath"></param>
/// <param name="strToPath"></param>

//--------------------------------------------------
//作者:明天去要飯 QQ:305725744
//---------------------------------------------------

public static void CopyFolder(string strFromPath,string strToPath)
{
//如果源檔案夾不存在,則建立
if (!Directory.Exists(strFromPath))
{
Directory.CreateDirectory(strFromPath);
}

//取得要拷貝的檔案夾名
string strFolderName = strFromPath.Substring(strFromPath.LastIndexOf("\\") + 1,strFromPath.Length

- strFromPath.LastIndexOf("\\") - 1);

//如果目標檔案夾中沒有源檔案夾則在目標檔案夾中建立源檔案夾
if (!Directory.Exists(strToPath + "\\" + strFolderName))
{
Directory.CreateDirectory(strToPath + "\\" + strFolderName);
}
//建立數組儲存源檔案夾下的檔案名稱
string[] strFiles = Directory.GetFiles(strFromPath);

//迴圈拷貝檔案
for(int i = 0;i < strFiles.Length;i++)
{
//取得拷貝的檔案名稱,只取檔案名稱,地址截掉。
string strFileName = strFiles[i].Substring(strFiles[i].LastIndexOf("\\") + 1,strFiles[i].Length -

strFiles[i].LastIndexOf("\\") - 1);
//開始拷貝檔案,true表示覆蓋同名檔案
File.Copy(strFiles[i],strToPath + "\\" + strFolderName + "\\" + strFileName,true);
}

//建立DirectoryInfo執行個體
DirectoryInfo dirInfo = new DirectoryInfo(strFromPath);
//取得源檔案夾下的所有子檔案夾名稱
DirectoryInfo[] ZiPath = dirInfo.GetDirectories();
for (int j = 0;j < ZiPath.Length;j++)
{
//擷取所有子檔案夾名
string strZiPath = strFromPath + "\\" + ZiPath[j].ToString();
//把得到的子檔案夾當成新的源檔案夾,從頭開始新一輪的拷貝
CopyFolder(strZiPath,strToPath + "\\" + strFolderName);
}
}

一.讀取文字檔
1/// <summary>
2/// 讀取文字檔
3/// </summary>
4private void ReadFromTxtFile()
5{
6 if(filePath.PostedFile.FileName != "")
7 {
8 txtFilePath =filePath.PostedFile.FileName;
9 fileExtName = txtFilePath.Substring(txtFilePath.LastIndexOf(".")+1,3);
10
11 if(fileExtName !="txt" && fileExtName != "TXT")
12 {
13 Response.Write("請選擇文字檔");
14 }
15 else
16 {
17 StreamReader fileStream = new StreamReader(txtFilePath,Encoding.Default);
18 txtContent.Text = fileStream.ReadToEnd();
19 fileStream.Close();
20 }
21 }
22 }
二.擷取檔案清單
1/// <summary>
2/// 擷取檔案清單
3/// </summary>
4private void GetFileList()
5{
6 string strCurDir,FileName,FileExt;
7
8 ///檔案大小
9 long FileSize;
10
11 ///最後修改時間;
12 DateTime FileModify;
13
14 ///初始化
15 if(!IsPostBack)
16 {
17 ///初始化時,預設為當前頁面所在的目錄
18 strCurDir = Server.MapPath(".");
19 lblCurDir.Text = strCurDir;
20 txtCurDir.Text = strCurDir;
21 }
22 else
23 {
24 strCurDir = txtCurDir.Text;
25 txtCurDir.Text = strCurDir;
26 lblCurDir.Text = strCurDir;
27 }
28 FileInfo fi;
29 DirectoryInfo dir;
30 TableCell td;
31 TableRow tr;
32 tr = new TableRow();
33
34 ///動態添加儲存格內容
35 td = new TableCell();
36 td.Controls.Add(new LiteralControl("檔案名稱"));
37 tr.Cells.Add(td);
38 td = new TableCell();
39 td.Controls.Add(new LiteralControl("檔案類型"));
40 tr.Cells.Add(td);
41 td = new TableCell();
42 td.Controls.Add(new LiteralControl("檔案大小"));
43 tr.Cells.Add(td);
44 td = new TableCell();
45 td.Controls.Add(new LiteralControl("最後修改時間"));
46 tr.Cells.Add(td);
47
48 tableDirInfo.Rows.Add(tr);
49
50 ///針對目前的目錄建立目錄引用對象
51 DirectoryInfo dirInfo = new DirectoryInfo(txtCurDir.Text);
52
53 ///迴圈判斷目前的目錄下的檔案和目錄
54 foreach(FileSystemInfo fsi in dirInfo.GetFileSystemInfos())
55 {
56 FileName = "";
57 FileExt = "";
58 FileSize = 0;
59
60 ///如果是檔案
61 if(fsi is FileInfo)
62 {
63 fi = (FileInfo)fsi;
64
65 ///取得檔案名稱
66 FileName = fi.Name;
67
68 ///取得檔案的副檔名
69 FileExt = fi.Extension;
70
71 ///取得檔案的大小
72 FileSize = fi.Length;
73
74 ///取得檔案的最後修改時間
75 FileModify = fi.LastWriteTime;
76 }
77
78 ///否則是目錄
79 else
80 {
81 dir = (DirectoryInfo)fsi;
82
83 ///取得目錄名
84 FileName = dir.Name;
85
86 ///取得目錄的最後修改時間
87 FileModify = dir.LastWriteTime;
88
89 ///設定檔案的副檔名為"檔案夾"
90 FileExt = "檔案夾";
91 }
92
93 ///動態添加表格內容
94 tr = new TableRow();
95 td = new TableCell();
96 td.Controls.Add(new LiteralControl(FileName));
97 tr.Cells.Add(td);
98 td = new TableCell();
99 td.Controls.Add(new LiteralControl(FileExt));
100 tr.Cells.Add(td);
101 td = new TableCell();
102 td.Controls.Add(new LiteralControl(FileSize.ToString()+"位元組"));
103 tr.Cells.Add(td);
104 td = new TableCell();
105 td.Controls.Add(new LiteralControl(FileModify.ToString("yyyy-mm-dd hh:mm:ss")));
106 tr.Cells.Add(td);
107 tableDirInfo.Rows.Add(tr);
108 }
109}

三.讀取記錄檔

1/// <summary>
2/// 讀取記錄檔
3/// </summary>
4private void ReadLogFile()
5{
6 ///從指定的目錄以開啟或者建立的形式讀取記錄檔
7 FileStream fs = new FileStream(Server.MapPath("upedFile")+"
\\logfile.txt",

FileMode.OpenOrCreate, FileAccess.Read);
8
9 ///定義輸出字串
10 StringBuilder output = new StringBuilder();
11
12 ///初始化該字串的長度為0
13 output.Length = 0;
14
15 ///為上面建立的檔案流建立讀取資料流
16 StreamReader read = new StreamReader(fs);
17
18 ///設定當前流的起始位置為檔案流的起始點
19 read.BaseStream.Seek(0, SeekOrigin.Begin);
20
21 ///讀取檔案
22 while (read.Peek() > -1)
23 {
24 ///取檔案的一行內容並換行
25 output.Append(read.ReadLine() + "\n");
26 }
27
28 ///關閉釋放讀資料流
29 read.Close();
30
31 ///返回讀到的記錄檔內容
32 return output.ToString();
33}

【轉】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.