|
Description
In a previous code snippet
we showed how to delete afile using
remove( ) but many C compilers also
support the unlink() function which
does the same thing.
Code
#include <stdio.h>
int main()
{
unlink("f:/cprojects/urls1.dat");
return 0;
}
Information
tested using LCC Win
32
|