Scripting Runtime Library(FileSystemObject)

È®Àå¸íÀÌ ¾ø´Â °æ·Î¿¡¼­ ¸¶Áö¸· ±¸¼º ¿ä¼ÒÀÇ ±âº» À̸§À» Æ÷ÇÔÇÑ ¹®ÀÚ¿­À» ¹ÝȯÇÑ´Ù.

Àμö/ÆĶó¸ÞÅÍ
object
ÇʼöÀûÀÎ ¿ä¼ÒÀ̸ç, Ç×»ó FileSystemObjectÀÇ À̸§ÀÌ´Ù.
objPath
ÇʼöÀûÀÎ ¿ä¼ÒÀ̸ç, ±âº» À̸§À» ¹ÝȯÇÒ ±¸¼º ¿ä¼ÒÀÇ °æ·ÎÀÌ´Ù.
¹Ýȯ°ª

¹Ýȯ°ª sValÀº ¹ÝȯµÇ´Â ±¸¼º ¿ä¼ÒÀÇ ±âº» À̸§À» Æ÷ÇÔÇÑ ¹®ÀÚ¿­ÀÌ´Ù.
objPath Àμö¿Í ÀÏÄ¡ÇÏ´Â ±¸¼º ¿ä¼Ò°¡ ¾øÀ¸¸é GetBaseName ¸Þ¼­µå´Â ºó ¹®ÀÚ¿­("")À» ¹ÝȯÇÑ´Ù.

¼³¸í
Âü°í: ¸Þ¼­µå´Â ÁÖ¾îÁø objPath ¹®ÀÚ¿­¿¡¸¸ »ç¿ëÇÑ´Ù.
°æ·Î¸¦ °áÁ¤ÇÏÁöµµ ¾Ê°í ÁöÁ¤ÇÑ °æ·Î°¡ ÀÖ´ÂÁöµµ °Ë»çÇÏÁö ¾Ê´Â´Ù.

GetBaseName ¸Þ¼­µå ¿¹Á¦

°á°ú Ç¥½Ãâ
ÇöÀç locationÀÇ GetBaseName º¸±â ¿¹Á¦
<SCRIPT language=JScript>
function GetBaseNameTest(filePath){
  var fso,str='';
  fso=new ActiveXObject('Scripting.FileSystemObject');
  str+='filePath='+filePath+'<BR>';
  str+='fso.GetBaseName(filePath)="'+fso.GetBaseName(filePath)+'"';
  return(str);
}
</SCRIPT>

<DIV id=showGetBase class=show alt="°á°ú">°á°ú Ç¥½Ãâ</DIV>
<DIV class=show
  onClick="showGetBase.innerHTML=GetBaseNameTest(self.location)">ÇöÀç Æú´õÀÇ GetBaseName º¸±â ¿¹Á¦</DIV>
°á°ú Ç¥½Ãâ
VBScript ÇöÀç Æú´õÀÇ GetBaseName º¸±â ¿¹Á¦
<SCRIPT language=VBScript>
Function GetBaseNameTestvb(filePath)
  Dim fso,str
  Set fso=CreateObject("Scripting.FileSystemObject")
  str=str&"filePath="&filePath&"<BR>"
  str=str&"fso.GetBaseName(filePath)='"&fso.GetBaseName(filePath)&"'"
  GetBaseNameTestvb=str
End Function
</SCRIPT>

<DIV id=showvb class=show alt="°á°ú">°á°ú Ç¥½Ãâ</DIV>
<DIV class=show onClick="showvb.innerHTML=GetBaseNameTestvb(self.location)">
  <SPAN class=ie>VBScript</SPAN> ÇöÀç Æú´õÀÇ <SPAN class=method>GetBaseName</SPAN> º¸±â ¿¹Á¦</DIV>