MonobjcMonobjc Documented Class Library
FileHandleForReadingAtPath Method (path)
NamespacesMonobjc.FoundationNSFileHandleFileHandleForReadingAtPath(NSString)

Returns a file handle initialized for reading the file, device, or named socket at the specified path.

Original signature is '+ (id)fileHandleForReadingAtPath:(NSString *)path'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSFileHandle FileHandleForReadingAtPath(
	NSString path
)
Public Shared Function FileHandleForReadingAtPath ( _
	path As NSString _
) As NSFileHandle
public:
static NSFileHandle^ FileHandleForReadingAtPath(
	NSString^ path
)
Parameters
path (NSString)
The path to the file, device, or named socket to access.
Return Value
The initialized file handle, or nil if no file exists at path.
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)