C# Класс InTheHand.Storage.FileIO

Provides helper methods for reading and writing files that are represented by objects of type IStorageFile.
PlatformVersion supported AndroidAndroid 4.4 and later iOSiOS 9.0 and later tvOStvOS 9.0 and later TizenTizen 3.0 Windows UWPWindows 10 Windows StoreWindows 8.1 or later Windows Phone StoreWindows Phone 8.1 or later Windows Phone SilverlightWindows Phone 8.0 or later Windows (Desktop Apps)Windows Vista or later
Показать файл Открыть проект

Открытые методы

Метод Описание
AppendLinesAsync ( IStorageFile file, IEnumerable lines ) : System.Threading.Tasks.Task

Appends lines of text to the specified file.

AppendLinesAsync ( IStorageFile file, IEnumerable lines, UnicodeEncoding encoding ) : System.Threading.Tasks.Task

Appends lines of text to the specified file using the specified character encoding.

AppendTextAsync ( IStorageFile file, string contents ) : System.Threading.Tasks.Task

Appends text to the specified file.

AppendTextAsync ( IStorageFile file, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task

Appends text to the specified file using the specified character encoding.

ReadLinesAsync ( IStorageFile file ) : Task>

Reads the contents of the specified file and returns lines of text.

ReadLinesAsync ( IStorageFile file, UnicodeEncoding encoding ) : Task>

Reads the contents of the specified file using the specified character encoding and returns lines of text.

ReadTextAsync ( IStorageFile file ) : Task

Reads the contents of the specified file and returns text.

ReadTextAsync ( IStorageFile file, UnicodeEncoding encoding ) : Task

Reads the contents of the specified file using the specified character encoding and returns text.

WriteLinesAsync ( IStorageFile file, IEnumerable lines ) : System.Threading.Tasks.Task

Writes lines of text to the specified file.

WriteLinesAsync ( IStorageFile file, IEnumerable lines, UnicodeEncoding encoding ) : System.Threading.Tasks.Task

Writes lines of text to the specified file using the specified character encoding.

WriteTextAsync ( IStorageFile file, string contents ) : System.Threading.Tasks.Task

Writes text to the specified file.

WriteTextAsync ( IStorageFile file, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task

Writes text to the specified file using the specified character encoding.

Описание методов

AppendLinesAsync() публичный статический Метод

Appends lines of text to the specified file.
public static AppendLinesAsync ( IStorageFile file, IEnumerable lines ) : System.Threading.Tasks.Task
file IStorageFile The file that the lines are appended to.
lines IEnumerable The list of text strings to append as lines.
Результат System.Threading.Tasks.Task

AppendLinesAsync() публичный статический Метод

Appends lines of text to the specified file using the specified character encoding.
public static AppendLinesAsync ( IStorageFile file, IEnumerable lines, UnicodeEncoding encoding ) : System.Threading.Tasks.Task
file IStorageFile The file that the lines are appended to.
lines IEnumerable The list of text strings to append as lines.
encoding UnicodeEncoding The character encoding of the file.
Результат System.Threading.Tasks.Task

AppendTextAsync() публичный статический Метод

Appends text to the specified file.
public static AppendTextAsync ( IStorageFile file, string contents ) : System.Threading.Tasks.Task
file IStorageFile The file that the text is appended to.
contents string The text to append.
Результат System.Threading.Tasks.Task

AppendTextAsync() публичный статический Метод

Appends text to the specified file using the specified character encoding.
public static AppendTextAsync ( IStorageFile file, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task
file IStorageFile The file that the text is appended to.
contents string The text to append.
encoding UnicodeEncoding The character encoding of the file.
Результат System.Threading.Tasks.Task

ReadLinesAsync() публичный статический Метод

Reads the contents of the specified file and returns lines of text.
public static ReadLinesAsync ( IStorageFile file ) : Task>
file IStorageFile The file to read.
Результат Task>

ReadLinesAsync() публичный статический Метод

Reads the contents of the specified file using the specified character encoding and returns lines of text.
public static ReadLinesAsync ( IStorageFile file, UnicodeEncoding encoding ) : Task>
file IStorageFile The file to read.
encoding UnicodeEncoding The character encoding of the file.
Результат Task>

ReadTextAsync() публичный статический Метод

Reads the contents of the specified file and returns text.
public static ReadTextAsync ( IStorageFile file ) : Task
file IStorageFile The file to read.
Результат Task

ReadTextAsync() публичный статический Метод

Reads the contents of the specified file using the specified character encoding and returns text.
public static ReadTextAsync ( IStorageFile file, UnicodeEncoding encoding ) : Task
file IStorageFile The file to read.
encoding UnicodeEncoding The character encoding of the file.
Результат Task

WriteLinesAsync() публичный статический Метод

Writes lines of text to the specified file.
public static WriteLinesAsync ( IStorageFile file, IEnumerable lines ) : System.Threading.Tasks.Task
file IStorageFile The file that the lines are written to.
lines IEnumerable The list of text strings to append as lines.
Результат System.Threading.Tasks.Task

WriteLinesAsync() публичный статический Метод

Writes lines of text to the specified file using the specified character encoding.
public static WriteLinesAsync ( IStorageFile file, IEnumerable lines, UnicodeEncoding encoding ) : System.Threading.Tasks.Task
file IStorageFile The file that the lines are written to.
lines IEnumerable The list of text strings to append as lines.
encoding UnicodeEncoding The character encoding of the file.
Результат System.Threading.Tasks.Task

WriteTextAsync() публичный статический Метод

Writes text to the specified file.
public static WriteTextAsync ( IStorageFile file, string contents ) : System.Threading.Tasks.Task
file IStorageFile The file that the text is written to.
contents string The text to write.
Результат System.Threading.Tasks.Task

WriteTextAsync() публичный статический Метод

Writes text to the specified file using the specified character encoding.
public static WriteTextAsync ( IStorageFile file, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task
file IStorageFile The file that the text is written to.
contents string The text to write.
encoding UnicodeEncoding The character encoding of the file.
Результат System.Threading.Tasks.Task