FileIO.AppendLinesAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AppendLinesAsync(IStorageFile, IIterable<String>) |
將文字行附加至指定的檔案。 |
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding) |
使用指定的字元編碼,將文字行附加至指定的檔案。 |
AppendLinesAsync(IStorageFile, IIterable<String>)
將文字行附加至指定的檔案。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines);
/// [Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines);
[Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines);
function appendLinesAsync(file, lines)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String)) As IAsyncAction
參數
- file
- IStorageFile
附加行的檔案。
要附加為行的文字字串清單。
傳回
這個方法完成時不會傳回任何物件或值。
- 屬性
另請參閱
適用於
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding)
使用指定的字元編碼,將文字行附加至指定的檔案。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines, UnicodeEncoding encoding);
function appendLinesAsync(file, lines, encoding)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String), encoding As UnicodeEncoding) As IAsyncAction
參數
- file
- IStorageFile
附加行的檔案。
要附加為行的文字字串清單。
- encoding
- UnicodeEncoding
檔案的字元編碼。
傳回
這個方法完成時不會傳回任何物件或值。
- 屬性