C#檔案及檔案夾的操作

來源:互聯網
上載者:User

當前程式所在的檔案夾
System.IO.Directory.GetCurrentDirectory()

 

--------------------------------------------------------------------------------

顯示指定檔案夾下的檔案
if(this.textBox1.Text.Trim()=="")
    return;
this.listBox1.Items.Clear();
string[] MyFiles=System.IO.Directory.GetFiles(this.textBox1.Text);
this.listBox1.Items.AddRange(MyFiles);

 

--------------------------------------------------------------------------------

顯示指定檔案夾下的子檔案夾
if(this.textBox1.Text.Trim()=="")
    return;
this.listBox1.Items.Clear();

--------------------------------------------------------------------------------

擷取指定檔案夾下的所有子檔案夾
string[] MyFolders=System.IO.Directory.GetDirectories(this.textBox1.Text);
this.listBox1.Items.AddRange(MyFolders);

 

--------------------------------------------------------------------------------

同時顯示指定檔案夾下的子檔案夾和檔案
if(this.textBox1.Text.Trim()=="")
    return;
this.listBox1.Items.Clear();

 

--------------------------------------------------------------------------------

擷取指定檔案夾下的所有檔案和子檔案夾
string[] MyFoldersFiles=System.IO.Directory.GetFileSystemEntries(this.textBox1.Text);
this.listBox1.Items.AddRange(MyFoldersFiles);

 

--------------------------------------------------------------------------------

檔案建立時間
this.dateTimePicker1.Text=File.GetCreationTime(this.textBox1.Text).ToLongDateString();

 

--------------------------------------------------------------------------------

最近修改時間
this.dateTimePicker2.Text=File.GetLastWriteTime(this.textBox1.Text).ToLongDateString();

 

--------------------------------------------------------------------------------

最近訪問時間
this.dateTimePicker3.Text=File.GetLastAccessTime(this.textBox1.Text).ToLongDateString();
FileAttributes MyAttributes=File.GetAttributes(this.textBox1.Text);
string MyFileType=MyAttributes.ToString();
if(MyFileType.LastIndexOf("ReadOnly")!=-1) //是否唯讀檔案
{
    this.checkBox1.Checked=true;
}
if(MyFileType.LastIndexOf("System")!=-1) //是否系統檔案
{
    this.checkBox2.Checked=true;
}
if(MyFileType.LastIndexOf("Hidden")!=-1) //是否隱藏檔案
{
    this.checkBox3.Checked=true;
}
if(MyFileType.LastIndexOf("Archive")!=-1) //是否歸檔檔案
{
    this.checkBox4.Checked=true;
}
if(MyFileType.LastIndexOf("Temporary")!=-1) //是否臨時檔案
{     this.checkBox5.Checked=true;
}

 

--------------------------------------------------------------------------------

設定檔案屬性
if(this.textBox1.Text.Length<2)
    return;
File.SetAttributes(this.textBox1.Text, FileAttributes.Normal);
if(this.checkBox1.Checked==true)
{
    File.SetAttributes(this.textBox1.Text, FileAttributes.ReadOnly);
}
FileAttributes MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox2.Checked==true)
{
    File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.System);
}
MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox3.Checked==true)
{
    File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.Hidden);
}
MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox4.Checked==true)
{
File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.Archive);
}
MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox5.Checked==true)
{
    File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.Temporary);
}
File.SetCreationTime(this.textBox1.Text,this.dateTimePicker1.Value);
File.SetLastWriteTime(this.textBox1.Text,this.dateTimePicker2.Value);
File.SetLastAccessTime(this.textBox1.Text,this.dateTimePicker3.Value);
MessageBox.Show("設定檔案屬性操作成功!","資訊提示",*******);

 

--------------------------------------------------------------------------------

擷取檔案夾屬性
if(this.textBox1.Text.Length<2)
    return;

 

--------------------------------------------------------------------------------

擷取檔案夾建立時間
this.dateTimePicker1.Text=Directory.GetCreationTime(this.textBox1.Text).ToLongDateString();

 

--------------------------------------------------------------------------------

擷取檔案夾最近被修改時間
this.dateTimePicker2.Text=Directory.GetLastWriteTime(this.textBox1.Text).ToLongDateString();

 

--------------------------------------------------------------------------------

擷取檔案夾最近被訪問時間
this.dateTimePicker3.Text=Directory.GetLastAccessTime(this.textBox1.Text).ToLongDateString();

--------------------------------------------------------------------------------

取得檔案夾屬性
FileAttributes MyAttributes=File.GetAttributes(this.textBox1.Text);
string MyFileType=MyAttributes.ToString();
if(MyFileType.LastIndexOf("Hidden")!=-1)
{

--------------------------------------------------------------------------------

判斷檔案夾隱藏屬性
    this.checkBox3.Checked=true;
}
if(MyFileType.LastIndexOf("Archive")!=-1)
{

--------------------------------------------------------------------------------

判斷檔案夾歸檔屬性
    this.checkBox4.Checked=true;
}

 

--------------------------------------------------------------------------------

設定檔案夾屬性
if(this.textBox1.Text.Length<2)
    return;

 

--------------------------------------------------------------------------------

設定檔案夾屬性為正常
File.SetAttributes(this.textBox1.Text, FileAttributes.Normal);
FileAttributes MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox3.Checked==true)
{

--------------------------------------------------------------------------------

設定檔案夾隱藏屬性
    File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.Hidden);
}
MyAttributes=File.GetAttributes(this.textBox1.Text);
if(this.checkBox4.Checked==true)
{

--------------------------------------------------------------------------------

設定檔案夾歸檔屬性
    File.SetAttributes(this.textBox1.Text,MyAttributes|FileAttributes.Archive);

 

--------------------------------------------------------------------------------

設定檔案夾建立時間
Directory.SetCreationTime(this.textBox1.Text,this.dateTimePicker1.Value);

 

--------------------------------------------------------------------------------

設定檔案夾最近被修改時間
Directory.SetLastWriteTime(this.textBox1.Text,this.dateTimePicker2.Value);

 

--------------------------------------------------------------------------------

設定檔案夾最近被訪問時間
Directory.SetLastAccessTime(this.textBox1.Text,this.dateTimePicker3.Value);
MessageBox.Show("設定檔案夾屬性操作成功!","資訊提示",*******);

 

--------------------------------------------------------------------------------

判斷檔案是否已經存在
string MyFileName=this.textBox1.Text;
if(MyFileName.Length<1)
    return;
string ShortName=MyFileName.Substring(MyFileName.LastIndexOf("\\")+1);
if(File.    Exists(MyFileName))
{
    MessageBox.Show("檔案:"+ShortName+"已經存在!","資訊提示",*****);}
else
{
    MessageBox.Show("檔案:"+ShortName+"不存在!","資訊提示",*****);
}

 

--------------------------------------------------------------------------------

判斷檔案夾是否已經存在
string MyFolderName=this.textBox2.Text;
if(MyFolderName.Length<1)
    return;
string FolderName=MyFolderName.Substring(MyFolderName.LastIndexOf("\\")+1);
if(Directory.Exists(MyFolderName))
{
    MessageBox.Show("檔案夾:"+FolderName+"已經存在!","資訊提示",*****);
}
else
{
    MessageBox.Show("檔案夾:"+FolderName+"不存在!","資訊提示",*****);
}

 

--------------------------------------------------------------------------------

刪除檔案夾
if(this.textBox1.Text.Trim()=="")
    return;
DirectoryInfo MyDir=new DirectoryInfo(this.textBox1.Text);
if(MessageBox.Show("是否刪除檔案夾:"+this.textBox1.Text+"及其所有內容?","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question) == DialogResult.Yes)
{
    MyDir.Delete(true);
    this.textBox1.Text="";
}

 

--------------------------------------------------------------------------------

建立多層檔案夾
if(this.textBox2.Text.Trim()=="")
    return;
if(Directory.Exists(this.textBox2.Text))
{
    MessageBox.Show("該檔案夾已經存在!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
    return;
}
if(MessageBox.Show("是否建立多層檔案夾:"+this.textBox2.Text,"提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question)==DialogResult.Yes)
{
    Directory.CreateDirectory(this.textBox2.Text);
    this.textBox2.Text="";
}

 

本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/hanghwp/archive/2009/04/21/4097908.aspx

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.