次の方法で共有


FolderInformation.CreateFileAsync メソッド

定義

オーバーロード

CreateFileAsync(String)

現在のフォルダーに新しいファイルを作成します。

CreateFileAsync(String, CreationCollisionOption)

現在のフォルダーに新しいファイルを作成し、同じ名前のファイルが現在のフォルダーに既に存在する場合の対処方法を指定します。

CreateFileAsync(String)

現在のフォルダーに新しいファイルを作成します。

public:
 virtual IAsyncOperation<StorageFile ^> ^ CreateFileAsync(Platform::String ^ desiredName) = CreateFileAsync;
/// [Windows.Foundation.Metadata.Overload("CreateFileAsyncOverloadDefaultOptions")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StorageFile> CreateFileAsync(winrt::hstring const& desiredName);
[Windows.Foundation.Metadata.Overload("CreateFileAsyncOverloadDefaultOptions")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StorageFile> CreateFileAsync(string desiredName);
function createFileAsync(desiredName)
Public Function CreateFileAsync (desiredName As String) As IAsyncOperation(Of StorageFile)

パラメーター

desiredName
String

Platform::String

winrt::hstring

新しいファイルの名前。

戻り値

このメソッドが正常に完了すると、新しいファイルを表す StorageFile が返されます。

実装

M:Windows.Storage.IStorageFolder.CreateFileAsync(System.String) M:Windows.Storage.IStorageFolder.CreateFileAsync(Platform::String) M:Windows.Storage.IStorageFolder.CreateFileAsync(winrt::hstring)
属性

こちらもご覧ください

適用対象

CreateFileAsync(String, CreationCollisionOption)

現在のフォルダーに新しいファイルを作成し、同じ名前のファイルが現在のフォルダーに既に存在する場合の対処方法を指定します。

public:
 virtual IAsyncOperation<StorageFile ^> ^ CreateFileAsync(Platform::String ^ desiredName, CreationCollisionOption options) = CreateFileAsync;
/// [Windows.Foundation.Metadata.Overload("CreateFileAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StorageFile> CreateFileAsync(winrt::hstring const& desiredName, CreationCollisionOption const& options);
[Windows.Foundation.Metadata.Overload("CreateFileAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StorageFile> CreateFileAsync(string desiredName, CreationCollisionOption options);
function createFileAsync(desiredName, options)
Public Function CreateFileAsync (desiredName As String, options As CreationCollisionOption) As IAsyncOperation(Of StorageFile)

パラメーター

desiredName
String

Platform::String

winrt::hstring

新しいファイルの名前。

options
CreationCollisionOption

ファイル名が現在のフォルダーに既に存在する場合の処理を示す 値。

戻り値

このメソッドが正常に完了すると、新しいファイルを表す StorageFile が返されます。

実装

M:Windows.Storage.IStorageFolder.CreateFileAsync(System.String,Windows.Storage.CreationCollisionOption) M:Windows.Storage.IStorageFolder.CreateFileAsync(Platform::String,Windows.Storage.CreationCollisionOption) M:Windows.Storage.IStorageFolder.CreateFileAsync(winrt::hstring,Windows.Storage.CreationCollisionOption)
属性

こちらもご覧ください

適用対象