程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#對文件/文件夾操作代碼匯總

C#對文件/文件夾操作代碼匯總

編輯:C#入門知識

C#對文件/文件夾操作代碼匯總。本站提示廣大學習愛好者:(C#對文件/文件夾操作代碼匯總)文章只能為提供參考,不一定能成為您想要的結果。以下是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);
  }
}

一.讀取文本文件

//// <summary>
/// 讀取文本文件
/// </summary>
private void ReadFromTxtFile()
{
  if(filePath.PostedFile.FileName != "")
  {
    txtFilePath =filePath.PostedFile.FileName;
    fileExtName = txtFilePath.Substring(txtFilePath.LastIndexOf(".")+1,3);

    if(fileExtName !="txt" && fileExtName != "TXT")
    {
      Response.Write("請選擇文本文件");
    }
    else
    {
      StreamReader fileStream = new StreamReader(txtFilePath,Encoding.Default);
      txtContent.Text = fileStream.ReadToEnd();
      fileStream.Close();
    }
  }
 }

二.獲得文件列表

//// <summary>
/// 獲得文件列表
/// </summary>
private void GetFileList()
{
  string strCurDir,FileName,FileExt;
  
  /**////文件年夜小
  long FileSize;
  
  /**////最初修正時光;
  DateTime FileModify;

  /**////初始化
  if(!IsPostBack)
  {
    /**////初始化時,默許為以後頁面地點的目次
    strCurDir = Server.MapPath(".");
    lblCurDir.Text = strCurDir;
    txtCurDir.Text = strCurDir;
  }
  else
  {
    strCurDir = txtCurDir.Text;
    txtCurDir.Text = strCurDir;
    lblCurDir.Text = strCurDir;
  }
  FileInfo fi;
  DirectoryInfo dir;
  TableCell td;
  TableRow tr;
  tr = new TableRow();
  
  /**////靜態添加單位格內容
  td = new TableCell();
  td.Controls.Add(new LiteralControl("文件名"));
  tr.Cells.Add(td);
  td = new TableCell();
  td.Controls.Add(new LiteralControl("文件類型"));
  tr.Cells.Add(td);
  td = new TableCell();
  td.Controls.Add(new LiteralControl("文件年夜小"));
  tr.Cells.Add(td);
  td = new TableCell();
  td.Controls.Add(new LiteralControl("最初修正時光"));
  tr.Cells.Add(td);

  tableDirInfo.Rows.Add(tr);
  
  /**////針對以後目次樹立目次援用對象
  DirectoryInfo dirInfo = new DirectoryInfo(txtCurDir.Text);
  
  /**////輪回斷定以後目次下的文件和目次
  foreach(FileSystemInfo fsi in dirInfo.GetFileSystemInfos())
  {
    FileName = "";
    FileExt = "";
    FileSize = 0;
    
    /**////假如是文件
    if(fsi is FileInfo)
    {
      fi = (FileInfo)fsi;
      
      /**////獲得文件名
      FileName = fi.Name;
      
      /**////獲得文件的擴大名
      FileExt = fi.Extension;
      
      /**////獲得文件的年夜小
      FileSize = fi.Length;
      
      /**////獲得文件的最初修正時光
      FileModify = fi.LastWriteTime;
    }

    /**////不然是目次
    else
    {
      dir = (DirectoryInfo)fsi;
      
      /**////獲得目次名
      FileName = dir.Name;
      
      /**////獲得目次的最初修正時光
      FileModify = dir.LastWriteTime;
      
      /**////設置文件的擴大名為"文件夾"
      FileExt = "文件夾";
    }
    
    /**////靜態添加表格內容
    tr = new TableRow();
    td = new TableCell();
    td.Controls.Add(new LiteralControl(FileName));
    tr.Cells.Add(td);
    td = new TableCell();
    td.Controls.Add(new LiteralControl(FileExt));
    tr.Cells.Add(td);
    td = new TableCell();
    td.Controls.Add(new LiteralControl(FileSize.ToString()+"字節"));
    tr.Cells.Add(td);
    td = new TableCell();
    td.Controls.Add(new LiteralControl(FileModify.ToString("yyyy-mm-dd hh:mm:ss")));
    tr.Cells.Add(td);
    tableDirInfo.Rows.Add(tr);
  }
}

三.讀取日記文件

//// <summary>
/// 讀取日記文件
/// </summary>
private void ReadLogFile()
{
  /**////從指定的目次以翻開或許創立的情勢讀取日記文件
  FileStream fs = new FileStream(Server.MapPath("upedFile")+"\\logfile.txt", FileMode.OpenOrCreate, FileAccess.Read);

  /**////界說輸入字符串
  StringBuilder output = new StringBuilder();
  
  /**////初始化該字符串的長度為0
  output.Length = 0;
  
  /**////為下面創立的文件流創立讀取數據流
  StreamReader read = new StreamReader(fs);
  
  /**////設置以後流的肇端地位為文件流的肇端點
  read.BaseStream.Seek(0, SeekOrigin.Begin);
  
  /**////讀取文件
  while (read.Peek() > -1) 
  {
    /**////取文件的一行內容並換行
    output.Append(read.ReadLine() + "\n");
  }
  
  /**////封閉釋放讀數據流
  read.Close();
  
  /**////前往讀到的日記文件內容
  return output.ToString();
}

四.寫入日記文件

//// <summary>
/// 寫入日記文件
/// </summary>
/// <param name="input"></param>
private void WriteLogFile(string input)
{  
  /**////指定日記文件的目次
  string fname = Server.MapPath("upedFile") + "\\logfile.txt";
  /**////界說文件信息對象
  FileInfo finfo = new FileInfo(fname);

  /**////斷定文件能否存在和能否年夜於2K
  if ( finfo.Exists && finfo.Length > 2048 )
  {
    /**////刪除該文件
    finfo.Delete();
  }
  /**////創立只寫文件流
  using(FileStream fs = finfo.OpenWrite())
  {
    /**////依據下面創立的文件流創立寫數據流
    StreamWriter w = new StreamWriter(fs);
    
    /**////設置寫數據流的肇端地位為文件流的末尾
    w.BaseStream.Seek(0, SeekOrigin.End);
    
    /**////寫入“Log Entry : ”
    w.Write("\nLog Entry : ");
    
    /**////寫入以後體系時光並換行
    w.Write("{0} {1} \r\n", DateTime.Now.ToLongTimeString(),
      DateTime.Now.ToLongDateString());
    
    /**////寫入日記內容並換行
    w.Write(input + "\n");
    
    /**////寫入------------------------------------“並換行
    w.Write("------------------------------------\n");
    
    /**////清空緩沖區內容,並把緩沖區內容寫入基本流
    w.Flush();
    
    /**////封閉寫數據流
    w.Close();
  }
}

五.創立HTML文件

//// <summary>
/// 創立HTML文件
/// </summary>
private void CreateHtmlFile()
{  
  /**////界說和html標志數量分歧的數組
  string[] newContent = new string[5];
  StringBuilder strhtml = new StringBuilder();
  try 
  {
    /**////創立StreamReader對象
    using (StreamReader sr = new StreamReader(Server.MapPath("createHTML") + "\\template.html")) 
    {
      String oneline;
      
      /**////讀取指定的HTML文件模板
      while ((oneline = sr.ReadLine()) != null) 
      {
        strhtml.Append(oneline);
      }
      sr.Close();
    }
  }
  catch(Exception err)
  {
    /**////輸入異常信息
    Response.Write(err.ToString());
  }
  /**////為標志數組賦值
  newContent[0] = txtTitle.Text;//題目
  newContent[1] = "BackColor='#cccfff'";//配景色
  newContent[2] = "#ff0000";//字體色彩
  newContent[3] = "100px";//字體年夜小
  newContent[4] = txtContent.Text;//重要內容

  /**////依據下面新的內容生成html文件
  try
  {
    /**////指定要生成的HTML文件
    string fname = Server.MapPath("createHTML") +"\\" + DateTime.Now.ToString("yyyymmddhhmmss") + ".html";
    
    /**////調換html模版文件裡的標志為新的內容
    for(int i=0;i < 5;i++)
    {
      strhtml.WordStr("$htmlkey["+i+"]",newContent[i]);
    }
    /**////創立文件信息對象
    FileInfo finfo = new FileInfo(fname);
    
    /**////以翻開或許寫入的情勢創立文件流
    using(FileStream fs = finfo.OpenWrite())
    {
      /**////依據下面創立的文件流創立寫數據流
      StreamWriter sw = new StreamWriter(fs,System.Text.Encoding.GetEncoding("GB2312"));
      
      /**////把新的內容寫到創立的HTML頁面中
      sw.WriteLine(strhtml);
      sw.Flush();
      sw.Close();
    }
    
    /**////設置超等鏈接的屬性
    hyCreateFile.Text = DateTime.Now.ToString("yyyymmddhhmmss")+".html";
    hyCreateFile.NavigateUrl = "createHTML/"+DateTime.Now.ToString("yyyymmddhhmmss")+".html";
  }
  catch(Exception err)
  { 
    Response.Write (err.ToString());
  }
}

以上所述就是本文的全體內容了,願望年夜家可以或許愛好。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved