Name
GetAssignPaths -- get all paths associated with an assign (V11.0)
Synopsis
t = GetAssignPaths(name$)
Library
amiga

Platforms
AmigaOS and compatibles only

Function
This function can be used to get all paths that are associated with the assign specified by name$. The assign passed in name$ must end on a colon character (:). The individual paths associated with the assign will be returned as a table containing a number of strings.

Inputs
name$
assign to query
Results
t
table containing a number of strings with the individual paths
Example
t = GetAssignPaths("LIBS:")
For Local k = 0 To ListItems(t) - 1 Do DebugPrint(t[k])
This code lists all paths that are part of the "LIBS:" assign.

Show TOC