# Delete(string)

> Deletes the specified file.

## Definition

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

```csharp
public static void Delete(string path)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The name of the file to be deleted.

### Remarks

If the specified file doesn't exist, this method does nothing and doesn't throw an exception.

**Note:** This method is available only on the Universal Windows Platform. On other platforms, use the .NET `System.IO.File.Delete` method instead.
