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_SetResoucePathFolder("AZSTOKE", 0)

Msg(fullPath)

Msg(addPath)


fullPath, addPath = reaper.AZ_SetResoucePathFolder("AZSTOKE", 1)

Msg(fullPath)

Msg(addPath)


fullPath, addPath = reaper.AZ_SetResoucePathFolder("AZSTOKE", 2)

Msg(fullPath)

Msg(addPath)

- SIMPLE SCRIPT -

fullPath,addPath = reaper.AZ_SetResoucePathFolder(folderName,tymeAddType)

- API -

ID

FILE/FOLDER

reaper.AZ_SetResoucePathFolder

対応バージョン:

1.0.0

以降

リソースパスにフォルダ階層を追加

- API Detail -

▼入力値 

folderName (string):作成するフォルダの名前

timeAddType(integer) :  フォルダの末尾に付け加える時間タイプ

※0/日付なし 1/月日時分 2/月日時分秒 3/年月日時分秒


▼出力値 

fullPath(string) : 作成フォルダを含むフルパス情報

addPath(string) : 作成フォルダ名※時間を含みます。

bottom of page