Oct 14, 2003 #1 FORAND Programmer May 26, 2003 64 CA How can i get my program to create a sub-folder? Like... i'm working in c:\PGQ, and i want my program to create .\dump so that i have c:\PGQ\dump hElP! Forand
How can i get my program to create a sub-folder? Like... i'm working in c:\PGQ, and i want my program to create .\dump so that i have c:\PGQ\dump hElP! Forand
Oct 14, 2003 #2 tchouch Programmer Apr 18, 2001 300 DE CreateDirectory( "c:\PGQ\dump", NULL); Upvote 0 Downvote
Nov 6, 2004 #3 vlitzer Programmer Apr 30, 2002 31 AR and to delete a directory? how i can do it? Upvote 0 Downvote
Nov 6, 2004 #4 timmay3141 Programmer Dec 3, 2002 468 US RemoveDirectory("c:\PGQ\dump"); Note: the directory must be empty or this function will fail. Upvote 0 Downvote