top of page

package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"

require("reaper_AZSTOKE_SILVER")


function Msg(param)

   reaper.ShowConsoleMsg(tostring(param).."\n")

end


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)


- SIMPLE SCRIPT -

fullPath,addPath = reaper.AZ_SetProjectPathFolder(folderName,timeAddType)

- API -

ID

FILE/FOLDER

reaper.AZ_SetProjectPathFolder

対応バージョン:

1.0.0

以降

プロジェクトパスにフォルダ階層を追加

- API Detail -

▼入力値 

folderName(string):フォルダ名※Luaは日本語をそのまま記載可能

timeType(integer):0/記載なし,1/日付_時間(0000_0000),2/日付_時分秒(0000_000000),3/年日付_時分秒(00000000_0000)


▼出力値 

fullPath(string):パス(全て)

addPath(string):追加したフォルダ名

bottom of page