An open API service indexing awesome lists of open source software.

https://github.com/miyako/4d-plugin-rename

Wrapper of standard C rename function
https://github.com/miyako/4d-plugin-rename

4d-plugin

Last synced: 7 days ago
JSON representation

Wrapper of standard C rename function

Awesome Lists containing this project

README

          

![version](https://img.shields.io/badge/version-19%2B-5682DF)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm%20|%20win-64&color=blue)
[![license](https://img.shields.io/github/license/miyako/4d-plugin-rename)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/4d-plugin-rename/total)

# 4d-plugin-rename
Wrapper of standard C [rename](https://msdn.microsoft.com/en-us/library/zw5t957f.aspx) 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)
```