青玄 发表于 2014-3-27 22:46:30

一个把你删的头大的程序

    朋友们这个程序执行以后会在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;
}



scuchx1 发表于 2014-3-28 00:21:24

算了,还是不找这个刺激了

被遗忘的指环 发表于 2014-3-28 03:43:21

真的要试试嘛?????????:curse:

青玄 发表于 2014-3-28 16:59:22

scuchx1 发表于 2014-3-28 00:21 static/image/common/back.gif
算了,还是不找这个刺激了

哎!有时候还是要刺激一下的{:2_27:}

青玄 发表于 2014-3-28 17:00:33

被遗忘的指环 发表于 2014-3-28 03:43 static/image/common/back.gif
真的要试试嘛?????????

要不?你试试{:2_26:}

被遗忘的指环 发表于 2014-3-28 21:37:01

青玄 发表于 2014-3-28 17:00 static/image/common/back.gif
要不?你试试

你试吧 哈哈············

oggplay 发表于 2014-3-28 21:41:25

我连头大的机会都没有
页: [1]
查看完整版本: 一个把你删的头大的程序