ApplicationData.TemporaryFolder Property

Definition

Gets the root folder in the temporary app data store.

public:
 property StorageFolder ^ TemporaryFolder { StorageFolder ^ get(); };
StorageFolder TemporaryFolder();
public StorageFolder TemporaryFolder { get; }
var storageFolder = applicationData.temporaryFolder;
Public ReadOnly Property TemporaryFolder As StorageFolder

Property Value

The file system folder that contains the files.

Remarks

You can access files in the temporary app data store using the "ms-appdata:///temp/" protocol. For example:

<img src="ms-appdata:///temp/myFile.png" alt="" />

Applies to

See also