.NET 프레임워크에서 파일 작업을 위해 사용되는 중요한 네임스페이스는 system.IO 네임스페이스이며 마찬가지로 C#에는 정적 메서드로 구성되지 않고 인스턴스화된 개체만 이 클래스를 사용할 수 있는 FileInfo 클래스라는 클래스가 있습니다. 디스크의 파일 또는 네트워크 위치는 fileinfo 개체로 표시되며, 파일 스트림 개체는 fileinfo 개체의 도움으로 생성될 수 있으며 파일 정보 클래스는 파일을 생성, 삭제, 복사, 이동 및 열기 위한 인스턴스 메서드를 제공합니다. fileinfo 클래스를 사용하여 파일에서 읽거나 바이트를 쓸 수 있는 코드를 수동으로 작성하기 위해 파일 읽기 및 쓰기 작업을 더 효과적으로 제어할 수 있습니다.
C# FileInfo 클래스의 구문은 다음과 같습니다.
[SerializableAttribute] [ComVisibleAttribute(true)] public sealed class FileInfo : FileSystemInfo
C#에서 FileInfo 클래스의 작동을 이해하려면 FileInfo 클래스의 생성자, FileInfo 클래스의 속성 및 FileInfo 클래스의 메서드를 이해해야 합니다.
FileInfo 클래스의 생성자는 다음과 같습니다.
FileInfo 클래스에는 여러 가지 속성이 있습니다. 설명은 다음과 같습니다.
FileInfo 클래스에는 여러 가지 메소드가 있습니다. 설명은 다음과 같습니다.
As we have understood the constructors of FileInfo class, Properties of FileInfo class and methods of the FileInfo class, now consider the below program:
Code:
using System; using System.IO; namespace Program { class Check { static void Main(string[] args) { try { // the file location is specified where the file is to be created string location = "C:\Users\shivakumarsh\Desktop\new.txt"; // instance of the fileinfo class is created FileInfo file = new FileInfo(location); // an empty file is created file.Create(); Console.WriteLine("Creation of file is successfull"); } catch(IOException e) { Console.WriteLine("Failed attempt to create file "+e); } } } }
Output:
In the above program, a namespace called the program is declared. Then the main method consisting of the try-catch block is defined. The try block consists of the location string where the new file needs to be created. An instance of the file info class is created, and the location string is passed as a parameter to the instance of the file info class. Create () method is invoked on the object of the file info class to create a new file in the location specified by the location string. If the file creation is successful, the success message is printed otherwise an exception is raised which is included in the catch block.
C# program to demonstrate usage of File Info class.
Code:
using System; using System.IO; namespace Program { class Check { static void Main(string[] args) { // the file location is specified where the file is to be located string location = "C:\Users\shivakumarsh\Desktop\new.txt"; // instance of the fileinfo class is created FileInfo file = new FileInfo(location); // The specified file is deleted file.Delete(); Console.WriteLine("Deletion of file is successfull"); } } }
Output:
In this tutorial, we understand the concept of FileInfo class in C# through definition, constructors of FileInfo class, properties of FileInfo class, methods of FileInfo class, working of FileInfo class through examples.
위 내용은 C# 파일정보의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!