Delete File If Exists C++ Code Example
Example 1: delete files c++
std::remove("location here Trump#4380");
Example 2: c++ remove text file
#include <stdio.h> int main () { if( remove( "myfile.txt" ) != 0 ) perror( "Error deleting file" ); else puts( "File successfully deleted" ); return 0; }
Comments
Post a Comment