Condividi tramite


FolderInformation.CreateFileAsync Metodo

Definizione

Overload

CreateFileAsync(String)

Crea un nuovo file nella cartella corrente.

CreateFileAsync(String, CreationCollisionOption)

Crea un nuovo file nella cartella corrente e specifica cosa fare se un file con lo stesso nome esiste già nella cartella corrente.

CreateFileAsync(String)

Crea un nuovo file nella cartella corrente.

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)

Parametri

desiredName
String

Platform::String

winrt::hstring

Nome del nuovo file.

Restituisce

Al termine di questo metodo, restituisce un File di archiviazione che rappresenta il nuovo file.

Implementazioni

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

Vedi anche

Si applica a

CreateFileAsync(String, CreationCollisionOption)

Crea un nuovo file nella cartella corrente e specifica cosa fare se un file con lo stesso nome esiste già nella cartella corrente.

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)

Parametri

desiredName
String

Platform::String

winrt::hstring

Nome del nuovo file.

options
CreationCollisionOption

Valore che indica cosa fare se il nome del file esiste già nella cartella corrente.

Restituisce

Al termine di questo metodo, restituisce un File di archiviazione che rappresenta il nuovo file.

Implementazioni

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)
Attributi

Vedi anche

Si applica a