Skip to content

miyako/4d-plugin-rename

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

version platform license downloads

4d-plugin-rename

Wrapper of standard C rename function

Syntax

RENAME (old;new;error)
Parameter Type Description
old TEXT old path of file or folder
new TEXT new path of file or folder
error LONGINT

Examples

$path:=System folder(Desktop)+Generate UUID+Folder separator

CREATE FOLDER($path;*)

RENAME ($path;System folder(Desktop)+Generate UUID;$error)