Contents

deletingLastPathComponent

A new string made by deleting the last path component from the receiver, along with any final path separator.

Declaration

var deletingLastPathComponent: String { get }

Discussion

A new string made by deleting the last path component from the receiver, along with any final path separator. If the receiver represents the root path it is returned unaltered.

The following table illustrates the effect of this method on a variety of different paths:

Receiver’s String Value

Resulting String

/tmp/scratch.tiff

/tmp

/tmp/lock/

/tmp

/tmp/

/

/tmp

/

/

/

scratch.tiff

“” (an empty string)

Note that this method only works with file paths (not, for example, string representations of URLs).

See Also

Working with Paths