<完全なファイルシステムオブジェクトのオブジェクト参照
GetParentFolderNameメソッドは、指定されたパスの最後のコンポーネントの親フォルダの名前を返します。
構文
FileSystemObject.GetParentFolderName(path)
パラメーター | 説明 |
---|---|
path | 必須。 親フォルダ名、ファイルまたはフォルダのパスが返されます |
例
<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("c:\winnt\cursors\3dgarro.cur")
Response.Write(p)
set fs=nothing
%>
Output:
c:\winnt\cursors
<完全なファイルシステムオブジェクトのオブジェクト参照