Create a file: Difference between revisions

Line 1,855:
Under Windows each filesystem has its own root.
Therefore you need to replace "/output.txt" and "/docs" with "/c/output.txt" and "/c/docs".
 
=={{header|SenseTalk}}==
<lang sensetalk>set the folder to "~/Desktop"
put "" into file "docs/output.txt"
set the folder to "/"
put empty into file "/docs/output.txt"</lang>
Or without defining a working directory:
<lang sensetalk>put empty into file "~/Desktop/docs/output.txt"
put "" into file "/docs/output.txt"</lang>
 
=={{header|Sidef}}==