- API -
fullPath,addPath = reaper.AZ_SetResoucePathFolder(folderName,tymeAddType)
- API Detail-
▼Input value
folderName (string): The name of the folder to create.
timeAddType(integer) : The time type to add to the end of the folder.
*0/No date 1/Month, date, time, minute 2/Month, date, time, minute, second 3/Year, month, date, time, minute, second
▼Output value
retval(boolean): Success or failure of API execution
fullPath(string): Full path information including the creation folder
addPath(string): The name of the folder to be created. *Includes the time.
- SCRIPT -
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)