Create file

Element creating a new file

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");

Last updated