MonobjcMonobjc Documented Class Library
AttributesOfFileSystemForPathError Method (path, error)
NamespacesMonobjc.FoundationNSFileManagerAttributesOfFileSystemForPathError(NSString, NSError%)

Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.

Original signature is '- (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSDictionary AttributesOfFileSystemForPathError(
	NSString path,
	out NSError error
)
Public Overridable Function AttributesOfFileSystemForPathError ( _
	path As NSString, _
	<OutAttribute> ByRef error As NSError _
) As NSDictionary
public:
virtual NSDictionary^ AttributesOfFileSystemForPathError(
	NSString^ path, 
	[OutAttribute] NSError^% error
)
Parameters
path (NSString)
Any pathname within the mounted file system.
error (NSError%)
If an error occurs, upon return contains an NSError object that describes the problem. Pass NULL if you do not want error information.
Return Value
An NSDictionary object that describes the attributes of the mounted file system on which path resides. See “File-System Attribute Keys” for a description of the keys available in the dictionary.
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)