Re: Deleting directory on Windows.
Chris Nystrom <[email protected]>
| Newsgroups | gmane.comp.video.gimp.windows.devel |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 10 Oct 2002, harringf wrote:
> Is there an easy way to delete directories ( with files ) from within
> a program.
Off the top of my head, how about something like:
#ifdef WIN32
system("deldir <dirname>");
#endif
Chris