<Complete FileSystemObject Object Reference
Il metodo GetFileName restituisce una stringa che contiene il nome del file o della cartella per l'ultimo componente in un percorso specificato.
Sintassi
FileSystemObject.GetFileName(path)
Parametro | Descrizione |
---|---|
path | Necessario. Il percorso di un file o una cartella specifica |
Esempi
Ottenere un nome di file:
<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.getfilename("c:\test\test.htm")
response.write(p)
set fs=nothing
%>
Output:
test.htm
Ottenere un nomecartella:
<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.getfilename("c:\test\")
response.write(p)
set fs=nothing
%>
Output:
test
<Complete FileSystemObject Object Reference