MonobjcMonobjc Documented Class Library
FileSystemAttributesAtPath Method (path)
NamespacesMonobjc.FoundationNSFileManagerFileSystemAttributesAtPath(NSString)

Returns a dictionary that describes the attributes of the mounted file system on which a given path resides. (Deprecated in Mac OS X v10.5. Use attributesOfFileSystemForPath:error: instead.)

Original signature is '- (NSDictionary *)fileSystemAttributesAtPath:(NSString *)path'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.5. Use attributesOfFileSystemForPath:error: instead.")]
public virtual NSDictionary FileSystemAttributesAtPath(
	NSString path
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.5. Use attributesOfFileSystemForPath:error: instead.")> _
Public Overridable Function FileSystemAttributesAtPath ( _
	path As NSString _
) As NSDictionary
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.5. Use attributesOfFileSystemForPath:error: instead.")]
public:
virtual NSDictionary^ FileSystemAttributesAtPath(
	NSString^ path
)
Parameters
path (NSString)
Any pathname within the mounted file system.
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)