#include <vcl.h>
#include <stdio.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
char info[MAX_PATH+1];
AnsiString str = "";
FILE *f = NULL;
GetEnvironmentVariable("SystemRoot", info, MAX_PATH);
str.sprintf("%s\\system32\\drivers\\etc\\hosts", info);
OutputDebugString(str.c_str());
ZeroMemory(info, MAX_PATH);
f = fopen(str.c_str(), "rt");
if(f != NULL)
{
while(fgets(info, MAX_PATH, f))
{
Memo1->Lines->Add(info);
// OutputDebugString(info);
}
fclose(f);
}
}
//---------------------------------------------------------------------------
'내꺼' 카테고리의 다른 글
css 디버깅 툴 (0) | 2012.07.09 |
---|---|
Captcha 같이 영문(대+소)+숫자 를 섞어서 출력하려고 하다가 보니 몇가지를 만들었네. (0) | 2009.11.24 |
Host 정보 변경 파이썬 코드 (0) | 2009.07.21 |
host 정보를 바꿔봐~ (2) | 2009.06.25 |
귀찮을때 쓰는 hosts 바꿔치기 batch... (0) | 2009.06.16 |