# temporaryFolder

> Returns a path to temporary folder.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.Windows](/engine/6000.7/script-reference/unityengine/windows.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static string temporaryFolder { get; }
```

### Remarks

On Windows Store Apps, it will be \\\<main drive\\>:\Users\<user name>\AppData\Local\Packages\<package id>\TempState, directory is writeable, so you can create, read and write files to it. In Editor, it will be \\\<your project path\\>\TempState.

**Note:** This property is only available on the Universal Windows Platform.
