Scripting Runtime Library(FileSystemObject)

지정한 경로에서 특정 파일에 해당하는 File 개체를 반환한다.

Script[oFile=]FileSystemObject.GetFile(filePath)
인수/파라메터
object
필수적인 요소이며, 항상 FileSystemObject의 이름이다.
filePath
필수적인 요소이며, filePath은 특정 파일의 경로(절대 경로 또는 상대 경로)이다.
반환값

반환값 oFilefilePath로 지정된 위치의 파일 개체를 참조한다.

설명

지정한 경로에서 특정 파일에 해당하는 File 개체를 반환한다.

지정한 파일이 없으면 오류가 발생한다.


method
GetFile 메서드
GetFile</b> 메서드이전페이지로페이지 맨위로페이지 맨아래로

GetFile 메서드 예제

결과 표시창
JScript 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>
결과 표시창
VBScript GetFile 메서드 예제
<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>

method
GetFile 메서드
견본
이전페이지로페이지 맨위로
최종 수정:
04/06/2025 22:09:16
KoXo Homepage
All right reserved
비정상적인 방식으로 프레임없이 페이지에 접속하면 자주 오류가 발생됩니다.
오류가 나면 정상적 접속으로 시도해 보세요.
http://koxo.com/lang/js/method/GetFile.html