<Komple FileSystemObject Nesne Referans
GetExtensionName yöntemi, belirtilen yoldaki son bileşen için dosya uzantısı adını içeren bir dize döndürür.
Sözdizimi
FileSystemObject.GetExtensionName(path)
Parametre | Açıklama |
---|---|
path | Gereklidir. Dosya uzantısı adı dosyasının yolunu döndürülecek |
Örnek
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetExtensionName("c:\test\test.htm"))
set fs=nothing
%>
Output:
htm
<Komple FileSystemObject Nesne Referans