C# program for searching directories and listing files

王林
Release: 2023-09-24 17:33:03
forward
1266 people have browsed it

用于搜索目录和列出文件的 C# 程序

Searching directories and listing files are common tasks in many applications. In C#, we can use the Directory and File classes provided by the System.IO namespace to perform these tasks. In this article, we'll explore how to write a C# program to search directories and list files.

Method: Use Directory.GetFiles()

The easiest way to search a directory and list files in C# is to use the Directory.GetFiles() method. This method returns an array of strings representing the paths to all files in the specified directory that match the specified search pattern.

This is how we can list all the files in a directory using the Directory.GetFiles() method -

Example

using System.IO;
using System;

class Program {
   static void Main() {
      string path = @"C:\Users\JohnDoe\Documents";
      string[] files = Directory.GetFiles(path);
   
      foreach (string file in files) {
         Console.WriteLine(file);
      }
   }
}
Copy after login

In this code, we first specify the directory path to search by specifying a string variable named path. We then use the Directory.GetFiles() method to get an array of strings representing the paths to all files in the directory.

Finally, we use a foreach loop to iterate over the array of file paths and print each path to the console.

Method: Use Directory.EnumerateFiles()

In C#, another way to search a directory and list files is to use the Directory.EnumerateFiles() method. This method returns an enumerable collection of strings representing the paths to all files in the specified directory that match the specified search pattern.

Here's how we use the Directory.EnumerateFiles() method to list all files in a directory -

Example

using System.IO;
using System;

class Program {
   static void Main(string[] args) {
      string path = @"C:\Users\JohnDoe\Documents";
   
      foreach (string file in Directory.EnumerateFiles(path)) {
         Console.WriteLine(file);
      }
   }
}
Copy after login

In this code, we first specify the directory path to search in a string variable named path. We then use the Directory.EnumerateFiles() method to get an enumerable collection of file paths.

Finally, we use a foreach loop to iterate through the collection of file paths and print each path to the console.

in conclusion

In this article, we explored how to write a C# program to search directories and list files using the Directory and File classes provided by the System.IO namespace. We learned how to use the Directory.GetFiles() method and the Directory.EnumerateFiles() method to list all files in a specified directory. Both methods are efficient and easy to use, making them essential tools for any C# developer.

The above is the detailed content of C# program for searching directories and listing files. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!