IStorageFolder.CreateFolderAsync メソッド

定義

オーバーロード

CreateFolderAsync(String)

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

CreateFolderAsync(String, CreationCollisionOption)

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

CreateFolderAsync(String)

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

public:
 IAsyncOperation<StorageFolder ^> ^ CreateFolderAsync(Platform::String ^ desiredName);
/// [Windows.Foundation.Metadata.Overload("CreateFolderAsyncOverloadDefaultOptions")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StorageFolder> CreateFolderAsync(winrt::hstring const& desiredName);
[Windows.Foundation.Metadata.Overload("CreateFolderAsyncOverloadDefaultOptions")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StorageFolder> CreateFolderAsync(string desiredName);
function createFolderAsync(desiredName)
Public Function CreateFolderAsync (desiredName As String) As IAsyncOperation(Of StorageFolder)

パラメーター

desiredName
String

Platform::String

winrt::hstring

作成するフォルダーの目的の名前。

戻り値

このメソッドが完了すると、新しいフォルダーが StorageFolder として返されます。

属性

こちらもご覧ください

適用対象

CreateFolderAsync(String, CreationCollisionOption)

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

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

パラメーター

desiredName
String

Platform::String

winrt::hstring

作成するフォルダーの目的の名前。

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

options
CreationCollisionOption

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

戻り値

このメソッドが完了すると、新しいフォルダーが StorageFolder として返されます。

属性

こちらもご覧ください

適用対象