Scripting Runtime Library(FileSystemObject)
지정한 경로에서 특정 파일에 해당하는 File 개체를 반환한다.
![]() | Script | [oFile=]FileSystemObject.GetFile(filePath) |
반환값 oFile는 filePath로 지정된 위치의 파일 개체를 참조한다.
지정한 경로에서 특정 파일에 해당하는 File 개체를 반환한다.
지정한 파일이 없으면 오류가 발생한다.
적용 | FileSystemObject 개체 |
참조 | GetAbsolutePathname 메서드 | GetBaseName 메서드 | GetDrive 메서드 |
GetDriveName 메서드 | GetExtensionName 메서드 | GetFileName 메서드 | |
GetFileVersion 메서드 | GetFolder 메서드 | GetParentFolderName 메서드 | |
GetSpecialFolder 메서드 | GetTempName 메서드 |
![]() | GetFile 메서드⇒ | ![]() | ![]() ![]() ![]() |
<SCRIPT language=JScript> function GetFileTest(filePath){ var fso,fileObj,str; fso=new ActiveXObject('Scripting.FileSystemObject'); if (!fso.FileExists(filePath)){ fileObj=fso.OpenTextFile(filePath,2,true); fileObj.WriteLine('예제를 위한 파일이다.'); fileObj.Close(); } fileObj=fso.GetFile(filePath); str=fileObj.Path.toUpperCase()+'<BR>'; str+='만든 날짜: '+fileObj.DateCreated+'<BR>'; str+='마지막으로 액세스한 날짜: '+fileObj.DateLastAccessed+'<BR>'; str+='마지막으로 수정한 날짜: '+fileObj.DateLastModified return(str); } </SCRIPT> <DIV id=showjs class=show alt="결과">결과 표시창</DIV> <DIV class=show onClick="id=showjs.innerHTML=GetFileTest('C:\\JsTest\\CreateText.txt')"> <SPAN class=ie>JScript</SPAN> <SPAN class=method>GetFile</SPAN> 메서드 예제</DIV>
<SCRIPT language=VBScript> Function GetFileTestvb(filePath) Dim fso,fileObj,str Set fso=CreateObject("Scripting.FileSystemObject") If Not fso.FileExists(filePath) Then Set fileObj=fso.OpenTextFile(filePath,2,True) fileObj.Write "예제를 위한 파일이다." fileObj.Close End If Set fileObj=fso.GetFile(filePath) str=fileObj.Path&"<BR>" str=str&"만든 날짜: "&fileObj.DateCreated&"<BR>" str=str&"마지막으로 액세스한 날짜: "&fileObj.DateLastAccessed&"<BR>" str=str&"마지막으로 수정한 날짜: "&fileObj.DateLastModified GetFileTestvb=str End Function </SCRIPT> <DIV id=showvb class=show alt="결과">결과 표시창</DIV> <DIV class=show onClick="showvb.innerHTML=GetFileTestvb('C:\\JsTest\\CreateText.txt')"> <SPAN class=ie>VBScript</SPAN> <SPAN class=method>GetFile</SPAN> 메서드 예제</DIV>
![]() | GetFile 메서드 | ⇒ | ![]() ![]() |
최종 수정: 04/06/2025 22:09:16 | ![]() All right reserved | 비정상적인 방식으로 프레임없이 페이지에 접속하면 자주 오류가 발생됩니다. 오류가 나면 정상적 접속으로 시도해 보세요. | http://koxo.com/lang/js/method/GetFile.html |