C# – Windows File System

  • Post author:
  • Post category:C#
  • Post comments:4 Comments
C# - Windows File System

C# Windows File System allows you to work with the directories and files using various directory and file-related classes such as the DirectoryInfo class and the FileInfo class.

The DirectoryInfo Class are C# Windows File System

The DirectoryInfo class is derived from the FileSystemInfo class. It has various methods for creating, moving, and browsing through directories and subdirectories. This class cannot be inherited.

Following are some commonly used properties of the DirectoryInfo class −

Sr.No.Property & Description
1AttributesGets the attributes for the current file or directory.
2CreationTimeGets the creation time of the current file or directory.
3ExistsGets a Boolean value indicating whether the directory exists.
4ExtensionGets the string representing the file extension.
5FullNameGets the full path of the directory or file.
6LastAccessTimeGets the time the current file or directory was last accessed.
7NameGets the name of this DirectoryInfo instance.

Following are some commonly used methods of the DirectoryInfo class −

Sr.No.Method & Description
1public void Create()Creates a directory.
2public DirectoryInfo CreateSubdirectory(string path)Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the DirectoryInfo class.
3public override void Delete()Deletes this DirectoryInfo if it is empty.
4public DirectoryInfo[] GetDirectories()Returns the subdirectories of the current directory.
5public FileInfo[] GetFiles()Returns a file list from the current directory.

For a complete list of properties and methods, please visit Microsoft’s C# documentation.

The FileInfo Class

The FileInfo class is derived from the FileSystemInfo class. It has properties and instance methods for creating, copying, deleting, moving, and opening of files, and helps in the creation of FileStream objects. This class cannot be inherited.

Following are some commonly used properties of the FileInfo class −

Sr.No.Property & Description
1AttributesGets the attributes for the current file.
2CreationTimeGets the creation time of the current file.
3DirectoryGets an instance of the directory to which the file belongs to.
4ExistsGets a Boolean value indicating whether the file exists.
5ExtensionGets the string representing the file extension.
6FullNameGets the full path of the file.
7LastAccessTimeGets the time the current file was last accessed.
8LastWriteTimeGets the time of the last written activity of the file.
9LengthGets the size, in bytes, of the current file.
10NameGets the name of the file.

Following are some commonly used methods of the FileInfo class −

Sr.No.Method & Description
1public StreamWriter AppendText()Creates a StreamWriter that appends text to the file represented by this instance of the FileInfo.
2public FileStream Create()Creates a file.
3public override void Delete()Deletes a file permanently.
4public void MoveTo(string destFileName)Moves a specified file to a new location, providing the option to specify a new file name.
5public FileStream Open(FileMode mode)Opens a file in the specified mode.
6public FileStream Open(FileMode mode, FileAccess access)Opens a file in the specified mode with read, write, or read/write access.
7public FileStream Open(FileMode mode, FileAccess access, FileShare share)Opens a file in the specified mode with reading, write, or read/write access and the specified sharing option.
8public FileStream OpenRead()Creates a read-only FileStream
9public FileStream OpenWrite()Creates a write-only FileStream.

For a complete list of properties and methods, please visit Microsoft’s C# documentation.

Example

The following example demonstrates the use of the above-mentioned classes −

using System;
using System.IO;

namespace WindowsFileApplication {
   class Program {
      static void Main(string[] args) {
         //creating a DirectoryInfo object
         DirectoryInfo mydir = new DirectoryInfo(@"c:\Windows");
         
         // getting the files in the directory, their names and size
         FileInfo [] f = mydir.GetFiles();
         foreach (FileInfo file in f) {
            Console.WriteLine("File Name: {0} Size: {1}", file.Name, file.Length);
         }
         
         Console.ReadKey();
      }
   }
}

When you compile and run the program, it displays the names of files and their respective sizes in the Windows directory.

Next Topic – Click Here

This Post Has 4 Comments

Leave a Reply