Create a file: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 44:
}
}
 
==[[MAXScript]]==
[[Category:MAXScript]]
-- Here
f = createFile "output.txt"
close f
makeDir (sysInfo.currentDir + "\docs")
-- System root
f = createFile "\output.txt"
close f
makeDir ("c:\docs")
 
==[[Perl]]==