Accessing other drives than C:\

Blitz3D Forums/Blitz3D Programming/Accessing other drives than C:\

K(Posted 2010) [#1]
I feel really dumb posting this but, how can I navigate to drive G:\?


Floyd(Posted 2010) [#2]
You can use ChangeDir "G:\".

Note the final \ which is necessary for the root, but not for ordinary paths.


K(Posted 2010) [#3]
Thanks.