FileSystemObject를 이용해서 폴더(디렉토리)를 생성하는 짧은 예제입니다. FileSystemObject(FSO)를 사용하기 위해서는 CreateObject를 메서드를 사용하여 FileSystemObject를 만들어야 합니다. 


아래 박스 참조
 

Dim Fso "변수를 생성 

Set Fso = Server.CreateObject("Scripting.FileSystemObject""FileSystemObject 객체를 생성

.....Fso를 이용한 처리
....

Set Fso = nothing "객체제거


밑에 예제는 "C:Temp"라는 폴더(디렉토리)의 존재 여부를 검사해서 존재하지 않으면 폴더를 생성하고, 존재하면 "폴더가 존재합니다"라는 메시지를 출력하는 것을 보여주고 있습니다..

<%

Dim Fso, strDir 

strDir = "C:Temp"

Set Fso = Server.CreateObject("Scripting.FileSystemObject""파일객체 생성 

If Not Fso.FolderExists(strDir) Then "C:Temp폴더가 존재하지 않으면
strDir = Fso.CreateFolder(strDir) "C:Temp폴더를 생성
Response.Write strDir & " 폴더 생성에 성공하였습니다."
Else
Response.Write strDir & " 폴더가 존재합니다."
End If

Set Fso = nothing

%>

 

'asp' 카테고리의 다른 글

덱스트 DEXT 업로드  (0) 2009.12.21
ASP 프로그램에서 세션 및 응용 프로그램 변수 사용  (0) 2009.12.10
String to ASCII Codes/ASCII Codes to String  (0) 2009.12.10
Asc Function  (0) 2009.12.10
VBScript!!!와 ASP의 오류처리  (0) 2009.11.27

+ Recent posts