Rob Williscroft wrote:[color=blue]
> Marc Schellens wrote in news:3F132491.5 070901@hotmail. com:
>
>[color=green]
>>How can I delete a file in C++?
>>thanks,
>>marc
>>
>>[/color]
>
>
> #include <cstdio>
>
> int main()
> {
> std::remove("fi lename.ext");
> }
>
> HTH[/color]
thanks, it did.
But isn't there a pure C++ way?
As I understood, cstdio is deprecated.
Comment