Class FileInfo
Provides instance methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of FileStream objects.
public abstract class FileInfo
- Inheritance
-
objectFileInfo
- Derived
- Extension Methods
Constructors
FileInfo()
Creates new instance of FileInfo object.
protected FileInfo()
Fields
mSystemInfo
System.IO file info object corresponding to this file
protected FileInfo mSystemInfo
Field Value
- FileInfo
Properties
Attributes
File attributes.
public abstract FileAttributes Attributes { get; set; }
Property Value
CreationTime
Creation date of file.
public abstract DateTime CreationTime { get; set; }
Property Value
- DateTime
Directory
Directory of file.
public abstract DirectoryInfo Directory { get; }
Property Value
DirectoryName
Directory name of file (without path).
public abstract string DirectoryName { get; }
Property Value
- string
Exists
If file exists.
public abstract bool Exists { get; }
Property Value
- bool
Extension
File extension.
public abstract string Extension { get; }
Property Value
- string
FullName
Full name of file (with whole path).
public abstract string FullName { get; }
Property Value
- string
IsReadOnly
If is read only.
public abstract bool IsReadOnly { get; set; }
Property Value
- bool
LastAccessTime
Last access time of file.
public abstract DateTime LastAccessTime { get; set; }
Property Value
- DateTime
LastWriteTime
Last write time to file.
public abstract DateTime LastWriteTime { get; set; }
Property Value
- DateTime
Length
Length of file.
public abstract long Length { get; }
Property Value
- long
Name
File name of file (without path).
public abstract string Name { get; }
Property Value
- string
SystemInfo
System.IO file info object corresponding to this file
public virtual FileInfo SystemInfo { get; }
Property Value
- FileInfo
Methods
CopyTo(string)
Copies current file to destination.
public FileInfo CopyTo(string destFileName)
Parameters
destFileName
stringDestination file name.
Returns
CopyTo(string, bool)
Copies current file to destination.
public FileInfo CopyTo(string destFileName, bool overwrite)
Parameters
destFileName
stringDestination file name.
overwrite
boolIndicates if existing file should be overwritten
Returns
CopyToInternal(string, bool)
Copies an existing file to a new file, allowing the overwriting of an existing file.
protected abstract FileInfo CopyToInternal(string destFileName, bool overwrite)
Parameters
destFileName
stringDestination file name
overwrite
boolWhether overwriting is allowed
Returns
CreateText()
Creates or opens a file for writing UTF-8 encoded text.
public StreamWriter CreateText()
Returns
CreateTextInternal()
Creates or opens a file for writing UTF-8 encoded text.
protected abstract StreamWriter CreateTextInternal()
Returns
Delete()
Deletes file.
public void Delete()
DeleteInternal()
Deletes file.
protected abstract void DeleteInternal()
MoveTo(string)
Moves an existing file to a new file.
public void MoveTo(string destFileName)
Parameters
destFileName
stringDestination file name.
MoveToInternal(string)
Moves an existing file to a new file.
protected abstract void MoveToInternal(string destFileName)
Parameters
destFileName
stringDestination file name
New(string)
Initializes new instance of file info object.
public static FileInfo New(string filename)
Parameters
filename
stringFile name
Returns
OpenRead()
Creates a read-only ICMSFileStream.
public FileStream OpenRead()
Returns
OpenReadInternal()
Creates a read-only FileStream.
protected abstract FileStream OpenReadInternal()
Returns
OpenText()
Creates a StreamReader with UTF8 encoding that reads from an existing text file.
public StreamReader OpenText()
Returns
OpenTextInternal()
Creates a StreamReader with UTF8 encoding that reads from an existing text file.
protected abstract StreamReader OpenTextInternal()