FT_CHDIR

FT_CHDIR()
 Change the current directory
------------------------------------------------------------------------------

 Syntax

     FT_CHDIR( <cDirName> ) -> nResult

 Arguments

    <cDirName> is the name of the desired directory.

 Returns

    0  if successful
    3  if path not found
    99 if invalid parameters passed

 Description

    Use this function if you prefer to change the active directory
    instead of relying on the SET PATH command.

    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_CHDIR( "C:\CLIPPER" )
    FT_CHDIR( "\" )
    FT_CHDIR( "..\SOURCE" )

 Source: CHDIR.ASM

 Author: Ted Means

3 responses to “FT_CHDIR

  1. Pingback: FT DOS/BIOS | Viva Clipper !

  2. Pingback: FT Functions | Viva Clipper !

  3. Pingback: FT DOS / BIOS | Viva Clipper !

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.