MonobjcMonobjc Documented Class Library
SubpathsAtPath Method (path)
NamespacesMonobjc.FoundationNSFileManagerSubpathsAtPath(NSString)

Returns an array that contains (as NSString objects) the contents of the directory identified by a given path.

Original signature is '- (NSArray *)subpathsAtPath:(NSString *)path'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSArray SubpathsAtPath(
	NSString path
)
Public Overridable Function SubpathsAtPath ( _
	path As NSString _
) As NSArray
public:
virtual NSArray^ SubpathsAtPath(
	NSString^ path
)
Parameters
path (NSString)
The path of the directory to list.
Return Value
An array that contains (as NSString objects) the contents of the directory identified by path. If path is a symbolic link, subpathsAtPath: traverses the link. Returns nil if it cannot get the device of the linked-to file.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)