컴퓨터에서는 폴더라고도 하는 디렉터리에 파일을 저장할 수 있습니다. 디렉터리에는 다른 디렉터리와 파일에 대한 바로 가기도 포함되어 있습니다. 모든 파일이 디렉터리에 저장되어 있는지 알고 싶다면 C#에서도 쉬운 방법을 제공합니다. 이를 위해 이 기사에서는 디렉터리에 있는 모든 파일을 가져오는 C# 프로그램을 학습합니다.
디렉토리에서 사용 가능한 파일을 알 수 있는 방법은 여러 가지가 있습니다. 다음 섹션에서 이에 대해 논의하겠습니다.1.GetFiles() 메서드
GetFiles() 및 GetDirectories()를 사용하여 지정된 디렉터리의 파일과 하위 디렉터리를 알 수 있습니다.
디렉터리의 절대 또는 상대 경로인 해당 매개변수는 문자열입니다. 그리고 대소문자를 구분하지 않습니다. 이 함수는 지정된 디렉터리에 있는 파일 이름과 해당 경로 목록이 포함된 배열을 반환합니다. 디렉터리가 비어 있으면 빈 배열도 반환됩니다.알고리즘
이제 GetFiles() 메서드를 사용하여 디렉터리의 모든 파일을 가져오는 알고리즘에 대해 살펴보겠습니다.
1단계
- 먼저 디렉터리 주소를 저장할 문자열을 선언합니다.2단계
−GetFiles()를 사용하여 파일 목록을 가져와서 fyles라는 배열에 저장합니다. 3단계
−마지막으로 파일 목록을 인쇄합니다. 예 으아악
출력이제 SearchOption.AllDirectories 메서드를 사용하여 디렉터리와 해당 하위 디렉터리에 있는 모든 파일을 가져오는 알고리즘에 대해 논의해 보겠습니다. 1단계−
먼저 디렉터리 주소를 저장할 문자열을 선언합니다. 2단계
−SearchOption.AllDirectories를 사용하여 디렉터리와 해당 하위 디렉터리의 파일 목록을 가져와서 fyles라는 배열에 저장합니다. 3단계
−마지막으로 파일 목록을 인쇄합니다. 예 으아악 출력
으아악메서드 이름으로 보면 이는 열거 가능한 컬렉션 반환 메서드임을 알 수 있습니다. 따라서 이 메서드는 사용자 정의 검색과 일치하는 특정 디렉터리에서 열거 가능한 전체 파일 이름 컬렉션을 반환하고 추가로 폴더를 탐색합니다.
으아악알고리즘
이제 Directory.EnumerateFiles() 메서드를 사용하여 디렉터리에 있는 모든 파일을 가져오는 알고리즘에 대해 논의해 보겠습니다.
−
먼저 디렉터리 주소를 저장할 문자열을 선언합니다. 2단계 −
Directory.EnumerateFiles(directloc, "*", SearchOption.AllDirectories)를 사용하여 디렉터리와 하위 디렉터리의 파일 목록을 가져와서 fyles라는 변수에 저장합니다. 3단계−
마지막으로 파일 목록을 인쇄합니다.
using System; using System.IO; using System.Collections.Generic; public class Example { public static void Main() { string directloc = @"D:\mypc\addre"; // files list from the root directory and its subdirectories and prints it var fyles = Directory.EnumerateFiles(directloc, "*", SearchOption.AllDirectories); Console.WriteLine(String.Join(Environment.NewLine, fyles)); } }
abrew.txt zuma.txt
在这个方法中,searchPattern非常重要,因为它是通配符和字面字符的混合。它不允许使用正则表达式。以下是通配符和它们的匹配项。
Wildcard Specifier |
Matches | 的中文翻译为:匹配 |
---|---|---|
*(星号) |
Zero or more characters in that position |
|
?(question mark) |
Exactly one character in that position |
If we use '*o' then each file name is checked to end with o. And if we use 'a*' then each file name is checked to start with a. Also when the asterisk wildcard character is used in searchPattern and the name of a three-character file extension, such as "*.txt," this returns files with extensions that have with the stated extension. Now, let’s see another method.
This method returns the names of all files and subdirectories that meet the conditions given by the programmer. The syntax for this method is as follows.
public static string[] GetFileSystemEntries (string path);
另一个选择是利用 Directory。GetFileSystemEntries() 方法检索提供路径中所有文件和子目录的名称。它可以使用搜索模式和搜索选项进行重载。当提供了搜索模式时,该方法将其与路径中的文件和文件夹名称进行比较。如果使用了 SearchOption.AllDirectories 选项,它将搜索所有子目录。
现在,让我们讨论使用 Directory.GetFileSystemEntries() 方法获取目录中所有文件的算法。
步骤 1 − 首先,我们声明一个字符串来存储目录的地址。
第二步 − 通过使用Directory.GetFileSystemEntries(rootdir, "*", SearchOption.AllDirectories)获取目录及其子目录中的文件列表,并将其存储在一个数组中。
Step 3 − Finally, we print the list of files.
using System; using System.IO; public class Example { public static void Main() { string directloc = @"D:\mypc\addre"; // files list from the root directory and its subdirectories and prints it string[] fyles = Directory.GetFileSystemEntries(directloc, "*", SearchOption.AllDirectories); Console.WriteLine(String.Join(Environment.NewLine, fyles)); } }
abrew.txt zuma.txt
所以,这篇文章就到这里了。在这篇文章中,我们学习了如何编写一个C#程序来获取目录中的所有文件。我们讨论了不同的方法来实现这个目标。我们还了解了这些方法的算法,并学习了它们的代码。希望这篇文章能够增加你对C#的知识。
위 내용은 디렉토리에 있는 모든 파일을 가져오는 C# 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!