[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 FT_MKDIR()
 Create a subdirectory
------------------------------------------------------------------------------

 Syntax

     FT_MKDIR(  <cDirName> ) -> nResult

 Arguments

    <cDirName> is the name of the directory to create.

 Returns

     0  if successful
     3  if Path Not Found
     5  if Access Denied or directory already exists
    99  if invalid parameters passed

 Description

    Use this function to create the subdirectories needed by your
    application.  It might be especially useful in an installation
    program.

    The source code is written to adhere to Turbo Assembler's IDEAL mode.
    To use another assembler, you will need to rearrange the PROC and
    SEGMENT directives, and also the ENDP and ENDS directives (a very
    minor task).

 Examples

    FT_MKDIR( "C:\CLIPPER" )
    FT_MKDIR( "\EXAMPLE" )
    FT_MKDIR( "..\SOURCE" )

 Source: MKDIR.ASM

 Author: Ted Means

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson