[ホーム] >
[VBScript FAQ 一覧] > [フルパスからパスのみ取り出す]
以下はフルパスからパス(ファイル名は除外)のみ取り出すサンプルです。
dim i
dim output
path="c:\temp\test1\test2"
for i=len(path) to 1 step -1
WScript.echo "i=" & CStr(i)
if mid(path,i,1)="\" then
output=right(path,len(path)-i)
WScript.echo "output=" & output
exit for
end if
next
[ホーム] >
[VBScript FAQ 一覧]