首页 > 其他 > 详细

__DeleteFile 删除文件(showmebug)

时间:2021-02-15 09:41:51      阅读:21      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include <string.h> 
#include <stdint.h>
#include <stdlib.h>
#include <string>
#include <iostream>
#include <vector>
#include <sstream>
using namespace std;
typedef	uint32_t	DWORD;
#define	VOID		void
typedef	int		BOOL;
#define	FALSE		0
#define	TRUE		1
typedef	unsigned int	UINT;
typedef	char			CHAR;
typedef	CHAR		*PCHAR;
bool __DeleteFile(const char* lpFileName)
	{
		char _szCmd[256];
		memset(_szCmd, 0, 256);
		sprintf(_szCmd, "rm -f %s", lpFileName);
		system(_szCmd);
		return true;
	}

 int main()
{
 		 
   	__DeleteFile("showmebug.cc");
   	system("ls");
    cout<<"hello,world"<<endl;
   return 0;
}

 

__DeleteFile 删除文件(showmebug)

原文:https://www.cnblogs.com/hshy/p/14403081.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!