
Cure
User
Mar 11, 2000, 10:10 PM
Post #2 of 2
(363 views)
|
Hi waherne perldoc -f unlink example(s):: $path='the/path/directory/; $file='new.txt'; unlink("$path/$file"); but if your in the same directory as the file you are trying to delete, then do this:: $file='new.txt'; unlink($file); Cure;
|