top of page
- API -
reaper.AZ_SetCopyFile(copyFilePath,pasteFilePath)
- API Detail-
▼Input value
copyFilePath(string): Folder path to copy from *Lua can be written in Japanese as is
pasteFilePath(string): Folder path to paste to *Lua accepts Japanese characters
▼Output value
retval(boolean): Success or failure of API execution
- SCRIPT -
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
retval = reaper.AZ_SetCopyFile("F:/script/test/wav","F:/script/test/copy")
FILE/FOLDER
AZ_SetCopyFile
Supported versions:
1.0.3
onwards
Copy all contents of the specified path to the specified path
bottom of page