Need help Changing drives
- Posted by Gene Mannel <genem2 at GJ.NET> Aug 05, 2000
- 388 views
Hi, Ive been doing pretty good changing DIR's within my program Im using to learn Euphoria but cant seem to change drives. This works: x = chdir("c:\\") n = current_dir() --which returns "c:" root dir but when I try this: x = chdir("d:\\") -- which is my other hard drive n = current_dir() -- I still get "c:" and not "d:" Is there another command or something that will let me change drives or am I doing it all wrong? :) Thanks Gene