MonobjcMonobjc Documented Class Library
FileAttributesAtPathTraverseLink Method (path, flag)
NamespacesMonobjc.FoundationNSFileManagerFileAttributesAtPathTraverseLink(NSString, Boolean)

Returns a dictionary that describes the POSIX attributes of the file specified at a given. (Deprecated in Mac OS X v10.5. Use attributesOfItemAtPath:error: instead.)

Original signature is '- (NSDictionary *)fileAttributesAtPath:(NSString *)path traverseLink:(BOOL)flag'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.5. Use attributesOfItemAtPath:error: instead.")]
public virtual NSDictionary FileAttributesAtPathTraverseLink(
	NSString path,
	bool flag
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.5. Use attributesOfItemAtPath:error: instead.")> _
Public Overridable Function FileAttributesAtPathTraverseLink ( _
	path As NSString, _
	flag As Boolean _
) As NSDictionary
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.5. Use attributesOfItemAtPath:error: instead.")]
public:
virtual NSDictionary^ FileAttributesAtPathTraverseLink(
	NSString^ path, 
	bool flag
)
Parameters
path (NSString)
A file path.
flag (Boolean)
If path is not a symbolic link, this parameter has no effect. If path is a symbolic link, then:
Return Value
An NSDictionary object that describes the POSIX attributes of the file specified at path. The keys in the dictionary are described in “File Attribute Keys”. If there is no item at path, returns nil.
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)