Up
Authors
- Felipe A. Rodriguez (
far@ix.netcom.com
)
-
- Jonathan Gapen (
jagapen@whitewater.chem.wisc.edu
)
-
Date: Generated at 2025-02-23 16:40:56 +0000
Hold a file's contents in dynamic memory.
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- Foundation/NSFileWrapper.h
Availability: OpenStep
Description forthcoming.
Instance Variables
- (
NSString*)
addFileWithPath: (
NSString*)path;
Availability: OpenStep
Description forthcoming.
- (
NSString*)
addRegularFileWithContents: (
NSData*)data
preferredFilename: (
NSString*)filename;
Availability: OpenStep
Description forthcoming.
- (
NSString*)
addSymbolicLinkWithDestination: (
NSString*)path
preferredFilename: (
NSString*)filename;
Availability: OpenStep
Description forthcoming.
- (
NSDictionary*)
fileAttributes;
Availability: OpenStep
Description forthcoming.
- (
NSDictionary*)
fileWrappers;
Availability: OpenStep
Description forthcoming.
- (
NSString*)
filename;
Availability: OpenStep
Description forthcoming.
- (id)
initDirectoryWithFileWrappers: (
NSDictionary*)docs;
Availability: OpenStep
Description forthcoming.
- (id)
initRegularFileWithContents: (
NSData*)data;
Availability: OpenStep
Description forthcoming.
- (id)
initSymbolicLinkWithDestination: (
NSString*)path;
Availability: OpenStep
Description forthcoming.
- (id)
initSymbolicLinkWithDestinationURL: (
NSURL*)url;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (id)
initWithPath: (
NSString*)path;
Availability: OpenStep
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: OpenStep
Description forthcoming.
- (BOOL)
isDirectory;
Availability: OpenStep
Description forthcoming.
- (BOOL)
isRegularFile;
Availability: OpenStep
Description forthcoming.
- (BOOL)
isSymbolicLink;
Availability: OpenStep
Description forthcoming.
- (BOOL)
matchesContentsOfURL: (
NSURL*)url;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
needsToBeUpdatedFromPath: (
NSString*)path;
Availability: OpenStep
Description forthcoming.
- (
NSString*)
preferredFilename;
Availability: OpenStep
Description forthcoming.
- (
NSData*)
regularFileContents;
Availability: OpenStep
Description forthcoming.
- (void)
removeFileWrapper: (
NSFileWrapper*)doc;
Availability: OpenStep
Description forthcoming.
- (
NSData*)
serializedRepresentation;
Availability: OpenStep
Description forthcoming.
- (void)
setFileAttributes: (
NSDictionary*)attributes;
Availability: OpenStep
Description forthcoming.
- (void)
setFilename: (
NSString*)filename;
Availability: OpenStep
Description forthcoming.
- (void)
setPreferredFilename: (
NSString*)filename;
Availability: OpenStep
Description forthcoming.
- (
NSString*)
symbolicLinkDestination;
Availability: OpenStep
Description forthcoming.
- (
NSURL*)
symbolicLinkDestinationURL;
Availability: MacOS-X 10.6.0
Description forthcoming.
- (BOOL)
updateFromPath: (
NSString*)path;
Availability: OpenStep
Description forthcoming.
- (BOOL)
writeToFile: (
NSString*)path
atomically: (BOOL)atomicFlag
updateFilenames: (BOOL)updateFilenamesFlag;
Availability: OpenStep
Description forthcoming.
Instance Variables for NSFileWrapper Class
@protected NSMutableDictionary*
_fileAttributes;
Availability: OpenStep
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;
Availability: OpenStep
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
_icon;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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