Getting Started
Introduction
Sample Programs
QBasic IDEs
History
Advice
Tools
Mini-Tutorial
Tutorial
Code Snippets

Resources
Web Sites
More Tutorials
Vendors
Books
Magazines
NewsLetters
NewsGroups
Forums
User Groups
Talk Shows
Blogs

GBIC >> QBasic >> Tutorial >> Folders

QBasic Information Center Tutorials - Folders
These tutorials were written to help you get a quick, but thorough, understanding of QBasic - the scope of the language as well as it's specific capabilities.

Folders
QBasic offers limited functions that deal with directories (folders). CHDIR MKDIR RMDIR

    • Management  
     chdir, mkdir, rmdir 

Directory Functions Reference
Here's a quick reference of the available folder functions, in alphabetical order.

  • chdir - change directory
        chdir "c:\folder\temp"
        
  • mkdir - make directory
        mkdir "c:\folder\new"
        
  • rmdir - remove directory
        rmdir "c:\folder\temp"
        

    If you have any suggestions or correction, please let me know.