Bundle Supports filesystem operations
HardLink
Provides hard link filesystem operations
Operations
Create # function
Creates a hard link
function : Create(l:System.String, t:System.String) ~ Bool
Parameters
| Name | Type | Description |
|---|
| l | String | link path name |
| t | String | target path name |
Return
| Type | Description |
|---|
| Bool | true if hard link was created |
Delete # function
Deletes the hard link
function : Delete(n:System.String) ~ Bool
Parameters
| Name | Type | Description |
|---|
| n | String | path to hard link |
Return
| Type | Description |
|---|
| Bool | true if file was deleted, false otherwise |