Table of Contents

Class FileInfo

Namespace
CMS.IO
Assembly
CMS.IO.dll

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
object
FileInfo
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

FileAttributes

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

DirectoryInfo

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 string

Destination file name.

Returns

FileInfo

CopyTo(string, bool)

Copies current file to destination.

public FileInfo CopyTo(string destFileName, bool overwrite)

Parameters

destFileName string

Destination file name.

overwrite bool

Indicates if existing file should be overwritten

Returns

FileInfo

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 string

Destination file name

overwrite bool

Whether overwriting is allowed

Returns

FileInfo

CreateText()

Creates or opens a file for writing UTF-8 encoded text.

public StreamWriter CreateText()

Returns

StreamWriter

CreateTextInternal()

Creates or opens a file for writing UTF-8 encoded text.

protected abstract StreamWriter CreateTextInternal()

Returns

StreamWriter

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 string

Destination file name.

MoveToInternal(string)

Moves an existing file to a new file.

protected abstract void MoveToInternal(string destFileName)

Parameters

destFileName string

Destination file name

New(string)

Initializes new instance of file info object.

public static FileInfo New(string filename)

Parameters

filename string

File name

Returns

FileInfo

OpenRead()

Creates a read-only ICMSFileStream.

public FileStream OpenRead()

Returns

FileStream

OpenReadInternal()

Creates a read-only FileStream.

protected abstract FileStream OpenReadInternal()

Returns

FileStream

OpenText()

Creates a StreamReader with UTF8 encoding that reads from an existing text file.

public StreamReader OpenText()

Returns

StreamReader

OpenTextInternal()

Creates a StreamReader with UTF8 encoding that reads from an existing text file.

protected abstract StreamReader OpenTextInternal()

Returns

StreamReader