top of page
- API -
fullPath,addPath = reaper.AZ_SetProjectPathFolder(folderName,timeAddType)
- API Detail -
▼入力値
folderName(string):フォルダ名※Luaは日本語をそのまま記載可能
timeType(integer):0/記載なし,1/日付_時間(0000_0000),2/日付_時分秒(0000_000000),3/年日付_時分秒(00000000_0000)
▼出力値
fullPath(string):パス(全て)
addPath(string):追加したフォルダ名
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
fullPath,addPath = reaper.AZ_SetProjectPathFolder("AZSTOKE",0)
Msg(fullPath)
Msg(addPath)
fullPath,addPath = reaper.AZ_SetProjectPathFolder("AZSTOKE",1)
Msg(fullPath)
Msg(addPath)
fullPath,addPath = reaper.AZ_SetProjectPathFolder("AZSTOKE",2)
Msg(fullPath)
Msg(addPath)
fullPath,addPath = reaper.AZ_SetProjectPathFolder("AZSTOKE",3)
Msg(fullPath)
Msg(addPath)
FILE/FOLDER
AZ_SetProjectPathFolder
対応バージョン:
1.0.3
以降
プロジェクトパスにフォルダ階層を追加
bottom of page