Create a file: Difference between revisions

Added Wren
(Added Wren)
Line 2,287:
 
{{omit from|SmileBASIC|Filesystem has no directories, only projects which cannot be manipulated by code.}}
 
=={{header|Wren}}==
To create a file in the root, assuming you have the necessary privileges, just change "output.txt"
to "/output.txt" in the following script.
 
Wren does not currently support the creation of directories.
<lang ecmascript>import "io" for File
 
// file is closed automatically after creation
File.create("output.txt") {}
 
// check size
System.print("%(File.size("output.txt")) bytes")</lang>
 
{{out}}
<pre>
0 bytes
</pre>
 
=={{header|X86 Assembly}}==
9,482

edits