Search found 1 match

by cobol30
Fri Oct 30, 2015 2:42 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to find out if a directory exists?
Replies: 13
Views: 23382

Re: How to find out if a directory exists?

In VBDOS the DIR$ command is mostly used for usage with files, but you able to see if a directory exists using in this way. Print DIR$("C:\GAMES/nul") If the directory does exist the text that is outputted to the screen should be 'C:\GAMES', and would be blank if the directory does not exi...