C#读取文件夹中的文件操作浅析

开发 后端
C#读取文件夹中的文件操作是怎么样子的呢?那么本文就向你介绍这方面的内容,希望对你有所帮助。

C#读取文件夹的操作是如何进行的呢?首先让我们来看啊可能:读出一个文件夹中的所有文件(文件数从0个到N多不定).没有文件返回假.

都是ascii码文件.

读每个文件的前一部分至出现***个 /s./s/r 为止.

读出来放后放至string[] filetsr中. 

strFiles = Directory.GetFiles(@"c:\Import");   
foreach(string strFile in strFiles)   
{   
File.Move(strFile,strFile.Replace("Import","Rubbish_Files"));   
 
//上面这句换为你的C#读取文件夹处理。   
 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.

试试看C#读取文件夹的代码吧,没来得及调试,有问题自己改改吧!

using System;   
using System.IO;   
 
class Test   
{   
public static void Main()   
{   
try   
{   
// Only get files that begin with the letter "c."   
int i=0;   
string[] dirs = Directory.GetFiles(@"c:\", "c*");   
Console.WriteLine("The number of files starting with c is {0}.", dirs.Length);   
string[] filetsr=new String[dirs.Length];   
foreach (string dir in dirs)   
{   
FileStream fs = new FileStream(dir,FileMode.Open);   
byte[] readBuf=new byte[fs.Length];   
syncF.Read(readBuf,0,fs.Length);   
 
data = Encoding.ASCII.GetString(readBuf);   
if (data.IndexOf("/s./s/r") > -1)   
{   
i++;   
filestr[i]=Microsoft.Basic.Left(data.IndexOf("/s./s/r") -1)   
}   
 
}   
}   
catch (Exception e)   
{   
Console.WriteLine("The process failed: {0}", e.ToString());   
}   
}   

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.

C#中遍历文件夹目录的问题

C#读取文件夹之递归实现查找目录下的所有子目录和文件

public   void   FindFile(string   dir)   //参数为指定的目录  
{       
//C#读取文件夹在指定目录及子目录下查找文件,在listBox1中列出子目录及文件  
DirectoryInfo   Dir=new   DirectoryInfo(dir);  
try 
{  
      foreach(DirectoryInfo   d   in   Dir.GetDirectories())//查找子目录     
{  
FindFile(Dir+d.ToString()+"\\");  
listBox1.Items.Add(Dir+d.ToString()+"\\");  //listBox1中填加目录名  
}  
      foreach(FileInfo   f   in   Dir.GetFiles("*.*")) //查找文件  
{  
listBox1.Items.Add(Dir+f.ToString());  //listBox1中填加文件名  
}  
}  
catch(Exception   e)  
{  
MessageBox.Show(e.Message);  
}  
 

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.

C#读取文件夹之方法调用情况:

private   void   button1_Click(object   sender,   System.EventArgs   e)  
{  
string   currentdir="F:\\myprogram\\C#\\FileSearch";     //搜索的目录  
if(currentdir[currentdir.Length-1]!='\\')   //非根目录  
currentdir+="\\";     
FindFile(currentdir);     //调用查找文件函数  

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.

C#读取文件夹中的文件的基本的情况就向你介绍到这里,希望对你学习C#读取文件夹有所帮助。

【编辑推荐】

  1. C#赋值运算符之复合赋值运算符
  2. C#读取XML文档实例浅析
  3. C#读取XML文档的实现浅析
  4. C#读取XML节点内容方法实例简析
  5. C#读取XML文档使用XMLTextReader类浅析
责任编辑:仲衡 来源: 百度空间
相关推荐

2009-08-31 10:56:54

C#创建文件夹

2009-08-31 12:31:45

C#创建文件夹

2009-08-17 07:55:00

C#文件操作

2009-08-12 17:27:11

C#读取文件

2009-08-13 09:16:57

C#读取配置文件

2009-08-31 18:38:59

C#写文件

2011-05-23 17:00:29

2009-09-02 19:08:03

C#实现读取文本文件

2009-08-12 18:06:53

C#读取二进制文件

2009-08-12 17:12:51

C#读取文件夹

2020-09-23 08:53:48

父文件夹模块Python

2009-08-18 16:14:05

C# 操作Excel

2009-08-31 12:56:36

C#创建文件夹

2009-09-02 19:22:03

C#递归

2009-08-18 16:42:49

C# 操作XML

2009-08-19 15:55:42

C#操作Access

2009-09-01 14:45:45

C#创建Excel文件

2023-03-28 15:19:37

文件列表scandir函数

2009-08-19 13:25:53

C#操作注册表

2009-08-19 17:44:15

C#操作文本文件
点赞
收藏

51CTO技术栈公众号