Click or drag to resize
IGDStorageFolderCreateFileAsync Method (String)
Creates a new file in the current folder.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
IAsyncOperation<GDStorageFile> CreateFileAsync(
	string desiredName
)

Parameters

desiredName
Type: SystemString
The desired name of the file to create.

Return Value

Type: IAsyncOperationGDStorageFile
When this method completes, it returns the new file as a GDStorageFile
Remarks
If you simply want to create a file in your app, see the CreateFileAsync methods of the GDStorageFolder class.
See Also