top of page
- API -
pathInfo = reaper.AZ_GetPathInfo(fullPath)
- API Detail -
▼入力値
・fullPath : 対象パス
▼出力値
・pathInfo : パス情報オブジェクト
→ParentPath : 親フォルダのパス
→ParentName : 親フォルダの名前
→FilePath : ファイルのフルパス
→FileName :ファイル名
→FileNameWithoutExtension : 拡張子を除いたファイル名
→Extension : 拡張子
→Type : Folder/File/空欄
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
path = "D://script//wav//JP//AZ_vo_PL0000_01.wav"
pathInfo = reaper.AZ_GetPathInfo(path)
Msg(pathInfo.ParentPath)
Msg(pathInfo.ParentName)
Msg(pathInfo.FilePath)
Msg(pathInfo.FileName)
Msg(pathInfo.FileNameWithoutExtension)
Msg(pathInfo.Extension)
Msg(pathInfo.Type)
FILE/FOLDER
AZ_GetPathInfo
対応バージョン:
1.0.3
以降
フルパスの各情報をマップ配列出力
bottom of page