# Delete file/folder

![](https://1755238209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNnEkyZmLMSWTDXxpygbG%2Fuploads%2Fgit-blob-16fe17ef234f0a75f66653bd0d591d691075f801%2Fimage%20\(67\).png?alt=media)

Element deleting a file

![](https://1755238209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNnEkyZmLMSWTDXxpygbG%2Fuploads%2Fgit-blob-7913737f3b80058fd72b0ec075a332dd7209ca66%2F1%20\(130\).png?alt=media)

Properties

\- Path\*: \[String] Path to a file to be deleted (c:\folder\file.txt)

```
C#
System.IO.File.Delete(@"C:\text.txt");
System.IO.Directory.Delete(@"C:\Dir");

Python
System.IO.File.Delete("C:\\text.txt")
System.IO.Directory.Delete("C:\\Dir")

JavaScript
_lib.System.IO.File.Delete("C:\\text.txt");
_lib.System.IO.Directory.Delete("C:\\Dir");
```
