How to find files using C#?

WBOY
Release: 2023-08-25 18:54:42
forward
1367 people have browsed it

How to find files using C#?

Use the GetDirectories method in C# to get the list of subfolders that appear first −

Directory.GetDirectories
Copy after login

Now loop through these directories and repeat the process for the subfolders.

string path = @"d:/New/Myfile";
string[] myDir = Directory.GetDirectories(path, "xml", SearchOption.AllDirectories);
Console.WriteLine(myDir.Length.ToString());
foreach (string res in myDir)
Console.WriteLine(res);
Copy after login

The above is the detailed content of How to find files using C#?. 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!