SymbolicLink
Provides symbolic link filesystem operations
Operations
Copy
Copies a symbolic link
function : Copy(s:System.String, d:System.String) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| s | String | source symbolic link |
| d | String | destination symbolic link |
Return
| Type | Description |
|---|---|
| Bool | true if link was copied |
Create
Creates a symbolic link
function : Create(l:System.String, t:System.String) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| l | String | link path name |
| t | String | target path name |
Return
| Type | Description |
|---|---|
| Bool | true if symbolic link was created |
Delete
Deletes the symbolic link
function : Delete(n:System.String) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| n | String | path to symbolic link |
Return
| Type | Description |
|---|---|
| Bool | true if file was deleted, false otherwise |