9 lines
149 B
Text
9 lines
149 B
Text
import Nanoquery.IO
|
|
|
|
f = new(File)
|
|
f.create("output.txt")
|
|
f.createDir("docs")
|
|
|
|
// in the root directory
|
|
f.create("/output.txt")
|
|
f.createDir("/docs")
|