9 lines
155 B
Text
9 lines
155 B
Text
|
|
-- Here
|
||
|
|
f = createFile "output.txt"
|
||
|
|
close f
|
||
|
|
makeDir (sysInfo.currentDir + "\docs")
|
||
|
|
-- System root
|
||
|
|
f = createFile "\output.txt"
|
||
|
|
close f
|
||
|
|
makeDir ("c:\docs")
|