FT_RMDIR() Delete a subdirectory Syntax FT_RMDIR( <cDirName> ) -> nResult Arguments <cDirName> is the name of the directory to delete. Returns 0 if successful 3 if Path Not Found 5 if Access Denied (directory not empty) 16 if attempt to delete current directory. 99 if invalid parameters passed Description This function is useful if you need to remove a subdirectory for some reason. 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_RMDIR( "C:\CLIPPER" ) FT_RMDIR( "\EXAMPLE" ) FT_RMDIR( "..\SOURCE" ) Source: RMDIR.ASM Author: Ted Means