删除文件linux

bool LxDeleteFile(const char* src){
 int32_t iRe = remove(src);
 if(iRe==0)
  return true;
 else
  return false;
}

 

posted on 2019-12-21 19:24  lydstory  阅读(136)  评论(0)    收藏  举报

导航