Contents

string(withFileSystemRepresentation:length:)

Returns an Nsstring object whose contents are derived from the specified C-string path.

Declaration

func string(withFileSystemRepresentation str: UnsafePointer<CChar>, length len: Int) -> String

Parameters

  • str:

    A C string representation of a pathname.

  • len:

    The number of characters in string.

Return Value

An NSString object converted from the C-string representation string with length len of a pathname in the current file system.

Discussion

Use this method if your code receives paths as C strings from system routines.

See Also

Converting file paths to strings