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