程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> C#遍歷文件夾下所有文件

C#遍歷文件夾下所有文件

編輯:C#基礎知識

FolderForm.cs的代碼如下:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Windows.Forms;

namespace HoverTree.Hewenqi
{
public partial class FolderForm : Form
{
public FolderForm()
{
InitializeComponent();
}
string _selectPath;
List<string> _fileList=new List<string> ();

private void button_selectFolder_Click(object sender, EventArgs e)
{
if(folderBrowserDialog_hoverTree.ShowDialog()== DialogResult.OK)
{
_selectPath = folderBrowserDialog_hoverTree.SelectedPath;
DirectoryInfo TheFolder = new DirectoryInfo(_selectPath);
StringBuilder m_sb = new StringBuilder();
foreach (FileInfo fi in TheFolder.GetFiles())//遍歷文件夾下所有文件
{
_fileList.Add(fi.FullName);
m_sb.Append(fi.Name + "\r\n");
}

textBox_filesHovertree.Text = m_sb.ToString();
}
}

private void linkLabel_HoverTree_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("http://hovertree.com");//打開何問起首頁
}
}
}


效果圖:


完整代碼下載:
http://hovertree.codeplex.com/SourceControl/latest#Hewenqi/FolderForm.cs

下載方法:http://hovertree.com/hvtart/bjae/ldm2365l.htm
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved