All Bundles

SymbolicLink

Provides symbolic link filesystem operations

Operations

Copy

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

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

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

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

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