[Toc][Index]

DosChDir



#define INCL_DOSFILEMGR

USHORT  rc = DosChDir(DirName, Reserved);

PSZ              DirName;       /* Directory path name *
ULONG            0;             /* Reserved (must be zero) */

USHORT           rc;            /* return code */

Example 
This example changes directories to \os2\system. 

#define INCL_DOSFILEMGR

#define PATH "\\os2\\system"
#define RESERVED 0L

USHORT rc;

   rc = DosChDir(PATH, RESERVED);


Created using Inf-PHP v.2 (c) 2003 Yuri Prokushev
Created using Inf-HTML v.0.9b (c) 1995 Peter Childs