#include <string>
int main()
{
std::string strFileName = "E:\\depthImage.pcd";
const char * fileName = strFileName.c_str();
remove(fileName);
return 0;
}
#include <string>
int main()
{
std::string strFileName = "E:\\depthImage.pcd";
const char * fileName = strFileName.c_str();
remove(fileName);
return 0;
}