Something has to copy your distributed game from the CD, including your .EXE file.
If the purchaser uses Windows Explorer to copy the files to a folder,
then that's where they are going to go.
Which is why most software distributions include a "Setup.exe" file.
The Setup program is what creates folders, and copies files.
You can do that with DarkBasic Pro - NOT in your game EXE file! (You can, but you really need a separate program to do the copy and install.)
Or, you can write the installer with Visual Basic, or C, or C++.
Or, you can find freeware/shareware/commercial installers on the Internet. (Such as InstallShield)
Or - you can include a "Readme.txt" file on the CD, and tell your user how and where you want things copied.
Or - you can use PKZip or maybe even WinZip to Zip everything up for your distribution. Those packages have the ability to create folders, and put files into those folders on the install drive.
If you want to get really tricky, look at creating a file to do "Autorun", so the user doesn't even have to find, or click on "Setup". (I'm sure you have done this many, many times!) DBPro isn't any different than all the other software packages out there, (not just games)....
Unfortunately, there isn't an "install" button that does all that for you. Like many other things, it's kind of a "do it yourself" kit...
[b])
Willy