# Write file

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

Element rewriting the content of a file

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

Properties

\- Encoding: \[String] Encoding used in a file (utf-8) '<https://docs.microsoft.com/ru-ru/dotnet/api/system.text.encoding>'

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

\- Text: \[String] Text to be written to a file

\- Array: \[byte\[]] Binary data recorded in a file

\- Image: \[System.Drawing.Bitmap] Image to be written to a file

```
C#
System.IO.File.WriteAllLines(@"C:\text.txt", new List<string>() { "New text" });
System.IO.File.WriteAllText(@"C:\text.txt", "New text");
System.IO.File.WriteAllBytes(@"C:\bytes.txt", new byte[0]);

Python
System.IO.File.WriteAllLines("C:\\text.txt", List[String](["New text"]));
System.IO.File.WriteAllText("C:\\text.txt", "New text");
System.IO.File.WriteAllBytes("C:\\bytes.txt", Array[Byte]([]));

JavaScript
var host = new _lib.Microsoft.ClearScript.HostFunctions();
var items = host.newObj(_lib.System.Collections.Generic.List(_lib.System.String));
items.Add("New text");
_lib.System.IO.File.WriteAllLines("C:\\text.txt", items);
_lib.System.IO.File.WriteAllText("C:\\text.txt", "New text");
var bytes = host.newObj(_lib.System.Collections.Generic.List(_lib.System.Byte));
_lib.System.IO.File.WriteAllBytes("C:\\bytes.txt", bytes.ToArray());
```
