Computer Science Canada

help with making folders

Author:  skier [ Mon Nov 15, 2004 4:44 pm ]
Post subject:  help with making folders

i am making this to store some info in folders but right now it will only make files. how do i make folders.
code:


var file : int
var s : string

for i : 1 .. 3
var fileName : string := "cool.txt"+ intstr (i)
    open : file, fileName , put
    put : file, "          "
    close (file)
end for

Author:  Andy [ Mon Nov 15, 2004 4:48 pm ]
Post subject: 

type "Dir" in turing and press F9

Author:  skier [ Mon Nov 15, 2004 5:21 pm ]
Post subject: 

i asked because i did not no what the command was. thanks Rolling Eyes

Author:  Andy [ Mon Nov 15, 2004 6:14 pm ]
Post subject: 

np.. if u searched for folder in the turing help manual.. it'll show up

Author:  Mr. Glib [ Tue Nov 16, 2004 6:04 pm ]
Post subject: 

Search for Dir.Create.


: