8 lines
177 B
Text
8 lines
177 B
Text
open "output.txt" for output as #f
|
|
close #f
|
|
|
|
dirOk = mkdir( "f:\doc")
|
|
if not(dirOk) then print "Directory not created!": end
|
|
|
|
open "f:\doc\output.txt" for output as #f
|
|
close #f
|