# Create file

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

Element creating a new file

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

Properties

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

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

Python
System.IO.File.Create("C:\\text.txt")

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