Spike
08-31-2000, 02:43 PM
How would I make it so when the program started up, it would create a folder on the "C:" drive with the name "Game" and place all the appropiate files into that folder. I want to make something like the first time you run it, it will install all the needed file into that one directory. Any suggestions?
farkwit
08-31-2000, 04:22 PM
try looking at the mkdir() function
then just use move() to move files
amram71
08-31-2000, 06:36 PM
You an use the MkDir( filename ) function. But, the Move function doesn't exist. The Only move function available is to move objects (like Form1.Move ...) To move a directory, I think you would use Name...
Name OldPath as NewPath. That might be only for Files, but I dont know
Kwalude
09-01-2000, 04:35 PM
Instead of Move, use FileCopy and Kill.