Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified path.
Original signature is '+ (id)fileHandleForUpdatingAtPath:(NSString *)path'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public static NSFileHandle FileHandleForUpdatingAtPath( NSString path )
Public Shared Function FileHandleForUpdatingAtPath ( _ path As NSString _ ) As NSFileHandle
public: static NSFileHandle^ FileHandleForUpdatingAtPath( NSString^ path )

- path (NSString)
- The path to the file, device, or named socket to access.

The initialized file handle, or nil if no file exists at path.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)