Up
Authors
- Felipe A. Rodriguez (
far@ix.netcom.com
)
-
- Jonathan Gapen (
jagapen@whitewater.chem.wisc.edu
)
-
Hold a file's contents in dynamic memory.
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSFileWrapper.h
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables
Method summary
- (NSString*) addFileWithPath: (NSString*)path;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) addFileWrapper: (NSFileWrapper*)doc;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) addRegularFileWithContents: (NSData*)data preferredFilename: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) addSymbolicLinkWithDestination: (NSString*)path preferredFilename: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSDictionary*) fileAttributes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSDictionary*) fileWrappers;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSImage*) icon;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) initDirectoryWithFileWrappers: (NSDictionary*)docs;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) initRegularFileWithContents: (NSData*)data;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) initSymbolicLinkWithDestination: (NSString*)path;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) initWithPath: (NSString*)path;
Availability: Not in OpenStep/MacOS-X
Init an instance from the file, directory, or symbolic
link at path.
This can create a tree
of instances with a directory instance at the top
- (id) initWithSerializedRepresentation: (NSData*)data;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isDirectory;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isRegularFile;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isSymbolicLink;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) keyForFileWrapper: (NSFileWrapper*)doc;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) needsToBeUpdatedFromPath: (NSString*)path;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) preferredFilename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSData*) regularFileContents;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) removeFileWrapper: (NSFileWrapper*)doc;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSData*) serializedRepresentation;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setFileAttributes: (NSDictionary*)attributes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setFilename: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setIcon: (NSImage*)icon;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setPreferredFilename: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) symbolicLinkDestination;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) updateFromPath: (NSString*)path;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)atomicFlag updateFilenames: (BOOL)updateFilenamesFlag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables for NSFileWrapper Class
@protected NSMutableDictionary* _fileAttributes;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSString* _filename;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSImage* _iconImage;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSString* _preferredFilename;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _wrapperData;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected GSFileWrapperType _wrapperType;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
Up