一个把你删的头大的程序
朋友们这个程序执行以后会在Windows的目录下生成一大推的垃圾文件,有兴趣的,可以来看一下:#include <windows.h>
#include <string>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char*argv[])
{
char Path;
char FileName;
char Data = "---------------------(让编程改变世界^_^)by 认真的雪(小白马)---------------";
for(int i=0; i < 300; i++)
{
GetWindowsDirectory(Path, sizeof(Path));//获取windows的目录
wsprintf(FileName, "\\%d.txt", i); //给文件命名
strcat(Path, FileName); //给path赋以完整路径
HANDLE hFile; //打开文件句柄
//创建文件
hFile = CreateFile(Path,GENERIC_WRITE,0,NULL,
CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL,NULL);
if(hFile == INVALID_HANDLE_VALUE)
{
continue;
}
DWORD dwWrite;
WriteFile(hFile, &Data, strlen(Data), &dwWrite, NULL);//将数据写入文件
CloseHandle(hFile); //关闭句柄
memset(Path, 0x00, 255);
memset(FileName, 0x00, 255);
}
printf("^_^ 文件已经复制完毕\n");
system("pause");
return 0;
}
算了,还是不找这个刺激了 真的要试试嘛?????????:curse: scuchx1 发表于 2014-3-28 00:21 static/image/common/back.gif
算了,还是不找这个刺激了
哎!有时候还是要刺激一下的{:2_27:} 被遗忘的指环 发表于 2014-3-28 03:43 static/image/common/back.gif
真的要试试嘛?????????
要不?你试试{:2_26:} 青玄 发表于 2014-3-28 17:00 static/image/common/back.gif
要不?你试试
你试吧 哈哈············ 我连头大的机会都没有
页:
[1]