Unit 'AmigaDOS' Package
[Overview][Constants][Types][Procedures and functions][Variables][Index] [#morphunits]

AddPart

Appends a file/dir to the end of a path

Declaration

Source position: amigados.pas line 2213

function AddPart(

  dirname: PChar;

  filename: PChar;

  size: Cardinal

):LongBool;

Arguments

dirname

  

The path to add a file/directory name to.

filename

  

The filename or directory name to add. May be a relative pathname from the current directory. (example: foo/bar). Can deal with leading '/'(s), indicating one directory up per '/', or with a ':', indicating it's relative to the root of the appropriate volume.

size

  

size in bytes of the space allocated for dirname. Must not be 0.

Description

This functions adds a file, directory or other path name to a directory path. It will take into account any pre-existing separator characters (':','/'). If filename is an absolute path it will replace the current value of dirname.

See also

FilePart

  

Returns the last component of a path

PathPart

  

Returns a pointer to the end of the next-to-last component of a path.


Documentation generated on: 2021-07-30