IStorageFolder.CreateFileAsync メソッド

定義

オーバーロード

CreateFileAsync(String)

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

CreateFileAsync(String, CreationCollisionOption)

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

CreateFileAsync(String)

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

public:
 IAsyncOperation<StorageFile ^> ^ CreateFileAsync(Platform::String ^ desiredName);
/// [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 として返されます。

属性

こちらもご覧ください

適用対象

CreateFileAsync(String, CreationCollisionOption)

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

public:
 IAsyncOperation<StorageFile ^> ^ CreateFileAsync(Platform::String ^ desiredName, CreationCollisionOption options);
/// [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

作成するファイルの目的の名前。

指定した desiredName が既に存在する既存のファイルが現在のフォルダーにある場合、指定した CreationCollisionOption によって、Windows が競合に対してどのように応答するかが決まります。

options
CreationCollisionOption

desiredName が現在のフォルダー内の既存のファイルの名前と同じである場合の Windows の応答方法を決定する列挙値。

戻り値

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

属性

こちらもご覧ください

適用対象