Unit 'amigados' Package
[Overview][Constants][Types][Procedures and functions][Index] [#os4units]

AssignPath

Creates an assignment to a specified path

Declaration

Source position: amigados.pas line 2543

function AssignPath(

  const Name: PChar;

  const Path: PChar

):LongBool;

Arguments

Name

  

Name of device to be assigned (without trailing ':')

Path

  

Name of late assignment to be resolved at each reference

Function result

IoErr() gives more information of fail

Description

Sets up a assignment that is expanded upon EACH reference to the name. This is implemented through a new device list type. The path (a string) would be attached to the node. When the name is referenced (DosOpen("FOO:xyzzy"...), the string will be used to determine where to do the open. No permanent lock will be part of it. For example, you could AssignPath() c2: to df2:c, and references to c2: would go to df2:c, even if you change disks.

The other major advantage is assigning things to unmounted volumes, which will be requested upon access (useful in startup sequences).


Documentation generated on: 2021-07-30