Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FAST TEXT SEARCH for Clipper v.2.0 - <b>makedir(<expc>)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   MAKEDIR(<expC>)

       Purpose

   Create a subdirectory.

       Parameters

   <expC> is the name of the new directory to create.

       Return Value

   .T. if directory the is created, .F. if the operation fails.

       Comments

   MAKEDIR() allows you to create a new directory on any drive, but it 
   does not allow you to change the default drive. Use SETDRIVE() to 
   change drives. Use MAKEDIR() to create new directories without having 
   to resort to a RUN statement.

       Example

   .
   .
   .
   newdir = 'sample'
   if MAKEDIR( newdir )
       ? 'directory created'
   else
       ? couldn't create new directory
   endif
   .
   .
   .

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson