top of page
- API -

fullPath = reaper.AZ_SetPathFolder(folderPath,folderName,timeAddType)

- API Detail-

▼Input value

folderPath(string): Path name ※Lua can be written in Japanese as is

folderName(string): Folder name ※Lua can be written in Japanese as is

timeType(integer): 0/not specified, 1/date_time(0000_0000), 2/date_hour_minute_second(0000_000000), 3/year_date_hour_minute_second(00000000_0000)


▼Output value

retval(boolean): Success or failure of API execution

fullPath(string): Path (full)

- SCRIPT -

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

require("reaper_AZSTOKE_SILVER")


function Msg(param)

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

end


retval,fullPath = reaper.AZ_SetPathFolder("F:/script/test","AZSTOKE",0)

Msg(fullPath)

retval,fullPath = reaper.AZ_SetPathFolder("F:/script/test","AZSTOKE",1)

Msg(fullPath)

retval,fullPath = reaper.AZ_SetPathFolder("F:/script/test","AZSTOKE",2)

Msg(fullPath)

retval,fullPath = reaper.AZ_SetPathFolder("F:/script/test","AZSTOKE",3)

Msg(fullPath)

FILE/FOLDER

AZ_SetPathFolder

Supported versions:

1.0.3

onwards

Add a folder hierarchy to the specified path

bottom of page