IStorageFolder.CreateFileAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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 返回。
- 属性