Click or drag to resize
IGDStorageFileCopyAsync Method (IGDStorageFolder)
Creates a copy of the file in the specified folder.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
IAsyncOperation<GDStorageFile> CopyAsync(
	IGDStorageFolder destinationFolder
)

Parameters

destinationFolder
Type: GDIGDStorageFolder
The destination folder where the copy is created.

Return Value

Type: IAsyncOperationGDStorageFile
When this method completes, it returns a GDStorageFile that represents the copy.
Remarks
If you simply want to copy a file in your app, see the CopyAsync methods of the GDStorageFile class.
See Also