Removes a subdirectory from the specified disk.

#define INCL_DOSFILEMGR
#include <os2.h>

PSZ       pszDir;  /*  Address of the fully qualified path name of the subdirectory to be removed. */
APIRET    ulrc;    /*  Return Code. */

ulrc = DosDeleteDir(pszDir);


[Back] [Next]