FileSystemIOException Class
See Also  Members  
Xceed.FileSystem Assembly > Xceed.FileSystem Namespace : FileSystemIOException Class


Exception that is thrown when an I/O error occurs while reading from or writing to an AbstractFile object.

Syntax

Visual Basic (Declaration) 
Public Class FileSystemIOException 
   Inherits FileSystemException
Visual Basic (Usage)Copy Code
Dim instance As FileSystemIOException
C# 
public class FileSystemIOException : FileSystemException 

Remarks

A System.IO.IOException will almost always be available in the System.Exception.InnerException property of this exception. This is the I/O exception that caused the FileSystemIOException to be thrown.

Inheritance Hierarchy

System.Object
   System.Exception
      System.ApplicationException
         Xceed.FileSystem.FileSystemException
            Xceed.FileSystem.FileSystemIOException

Requirements

Target Platforms: Windows 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7

See Also