v2026.6.4
All Bundles
Bundle Supports filesystem operations

SymbolicLink

Provides symbolic link filesystem operations

Operations

Copy # function

Copies a symbolic link

function : Copy(s:System.String, d:System.String) ~ Bool

Parameters

NameTypeDescription
sStringsource symbolic link
dStringdestination symbolic link

Return

TypeDescription
Booltrue if link was copied

Create # function

Creates a symbolic link

function : Create(l:System.String, t:System.String) ~ Bool

Parameters

NameTypeDescription
lStringlink path name
tStringtarget path name

Return

TypeDescription
Booltrue if symbolic link was created

Delete # function

Deletes the symbolic link

function : Delete(n:System.String) ~ Bool

Parameters

NameTypeDescription
nStringpath to symbolic link

Return

TypeDescription
Booltrue if file was deleted, false otherwise

Exists # function

Checks to see if the given symbolic link exists

function : Exists(n:System.String) ~ Bool

Parameters

NameTypeDescription
nStringsymbolic link name

Return

TypeDescription
Booltrue if symbolic link exists

Location # function

Returns the path location that the symbolic link refers to

function : Location(n:System.String) ~ Bool

Parameters

NameTypeDescription
nStringsymbolic link path

Return

TypeDescription
Boolpath the symbolic link refers to