in reply to Re: unlink and rmdir
in thread unlink and rmdir

Just another 'TAMTOWTDI'. I know this is non-portable, but on unix machines, I am most likely going to do something like this instead -
system("/bin/rm -rf $dir");
or simply
`/bin/rm -rf $dir`;