Table of Contents

Class File

Namespace
CMS.IO
Assembly
CMS.IO.dll

Envelope for File classes

public static class File
Inheritance
object
File

Methods

AppendAllText(string, string)

Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.

public static void AppendAllText(string path, string contents)

Parameters

path string

Path

contents string

Content to write

AppendAllText(string, string, Encoding)

Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.

public static void AppendAllText(string path, string contents, Encoding encoding)

Parameters

path string

Path

contents string

Content to write

encoding Encoding

The character encoding to use

Copy(string, string)

Copies an existing file to a new file.

public static void Copy(string sourceFileName, string destFileName)

Parameters

sourceFileName string

Path to source file

destFileName string

Path to destination file

Copy(string, string, bool)

Copies an existing file to a new file. Overwriting a file of the same name is allowed.

public static void Copy(string sourceFileName, string destFileName, bool overwrite)

Parameters

sourceFileName string

Path to source file

destFileName string

Path to destination file

overwrite bool

If destination file should be overwritten

Create(string)

Creates or overwrites a file in the specified path.

public static FileStream Create(string path)

Parameters

path string

Path to file

Returns

FileStream

CreateText(string)

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

public static StreamWriter CreateText(string path)

Parameters

path string

Path to file

Returns

StreamWriter

Delete(string)

Deletes the specified file. An exception is not thrown if the specified file does not exist.

public static void Delete(string path)

Parameters

path string

Path to file

Exists(string)

Determines whether the specified file exists.

public static bool Exists(string path)

Parameters

path string

The file to check.

Returns

bool

true if the caller has the required permissions and path contains the name of an existing file; otherwise, false. This method also returns false if path is null, an invalid path, or a zero-length string. If the caller does not have sufficient permissions to read the specified file, no exception is thrown and the method returns false regardless of the existence of path.

ExistsRelative(string)

Determines whether the specified file exists.

public static bool ExistsRelative(string path)

Parameters

path string

Path to file

Returns

bool

GetFileObject(string)

Gets the file provider object for given path

public static AbstractFile GetFileObject(string path)

Parameters

path string

Input path, output is path relative to the returned storage provider

Returns

AbstractFile

GetFileUrl(string)

Returns URL to file. If can be accessed directly then direct URL is generated.

public static string GetFileUrl(string path)

Parameters

path string

Virtual path starting with ~ or absolute path.

Returns

string

GetLastWriteTime(string)

Returns the date and time the specified file or directory was last written to.

public static DateTime GetLastWriteTime(string path)

Parameters

path string

Path to file

Returns

DateTime

Move(string, string)

Moves a specified file to a new location, providing the option to specify a new file name.

public static void Move(string sourceFileName, string destFileName)

Parameters

sourceFileName string

Source file name

destFileName string

Destination file name

Open(string, FileMode, FileAccess)

Opens a FileStream on the specified path, with the specified mode and access.

public static FileStream Open(string path, FileMode mode, FileAccess access)

Parameters

path string

Path to file

mode FileMode

File mode

access FileAccess

File access

Returns

FileStream

OpenRead(string)

Opens an existing file for reading.

public static FileStream OpenRead(string path)

Parameters

path string

Path to file

Returns

FileStream

OpenText(string)

Opens an existing UTF-8 encoded text file for reading.

public static StreamReader OpenText(string path)

Parameters

path string

Path to file

Returns

StreamReader

ReadAllBytes(string)

Opens a binary file, reads the contents of the file into a byte array, and then closes the file.

public static byte[] ReadAllBytes(string path)

Parameters

path string

Path to file

Returns

byte[]

ReadAllText(string)

Opens a text file, reads all lines of the file, and then closes the file.

public static string ReadAllText(string path)

Parameters

path string

Path to file

Returns

string

ReadAllText(string, Encoding)

Opens a text file, reads all lines of the file, and then closes the file.

public static string ReadAllText(string path, Encoding encoding)

Parameters

path string

Path to file

encoding Encoding

The character encoding to use

Returns

string

SetAttributes(string, FileAttributes)

Sets the specified FileAttributes of the file on the specified path.

public static void SetAttributes(string path, FileAttributes fileAttributes)

Parameters

path string

Path to file

fileAttributes FileAttributes

File attributes

SetLastWriteTime(string, DateTime)

Sets the date and time that the specified file was last written to.

public static void SetLastWriteTime(string path, DateTime lastWriteTime)

Parameters

path string

Path to file

lastWriteTime DateTime

Last write time

WriteAllBytes(string, byte[])

Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten.

public static void WriteAllBytes(string path, byte[] bytes)

Parameters

path string

Path to file

bytes byte[]

Bytes to write

WriteAllText(string, string)

Creates a new file, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.

public static void WriteAllText(string path, string contents)

Parameters

path string

Path to file

contents string

Content to write

WriteAllText(string, string, Encoding)

Creates a new file, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.

public static void WriteAllText(string path, string contents, Encoding encoding)

Parameters

path string

Path to file

contents string

Content to write

encoding Encoding

The character encoding to use