[ASP]서버의 특정파일에서 특정부분만 정보를 읽어오기
<%
'//Writer: SkyLimit
'//Language: ASP
'파일 경로
TextFilePath = "c:\InetPub\test.ini"'//요부분만 수정하세요.
'//파일 시스템 개체 생성
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
'//파일 존재 검사
if fso.FileExists(TextFilePath) then
'//파일 오픈
Set f = fso.OpenTextFile(TextFilePath, 1,false,0) '(fname,mode 1:forReading,create,format 0:ASCII)
Do Until f.AtEndOfLine '파일의 4096 라인까지 읽는다.
buffer= buffer & f.read(4096)
loop
f.close
Set f = Nothing
'//문자열 비교
strArray = Split(buffer,vbcr & vblf)
For i = 0 To UBound(strArray) - 1
if InStr(strArray(i),"AAA") > 0 Then
response.write strArray(i)
End If
Next
else
'//파일 없음
response.write TextFilePath & "이 지정된 경로에 없습니다."
end If
Set FSO = Nothing
%>
'Web Tech > ASP.NET,ASP' 카테고리의 다른 글
IIS7 - HTTP 모듈과 HTTP 처리기 비교 (0) | 2009.05.07 |
---|---|
IIS7 - HTTP 모듈 이벤트 순서 (0) | 2009.05.07 |
SQL Injection 처리 2 (2) | 2008.11.13 |
SQL Injection 처리 (2) | 2008.11.06 |