|
Mac Dev Center
Mac OS X Reference Library Drivers, Kernel, & Hardware: User-Space Device Access Disc Recording Framework Reference
|
DRFile(VirtualLinks) |
This category on DRFile defines methods that allow various link/alias files to be created on the resulting disc which may not exist in the source.
Creates a Finder alias to another file on the output disc.
Creates a hard link to another file on the output disc.
Initializes a file object to point to another file on the output disc.
Creates a symbolic link to another file on the output disc.
finderAliasPointingTo:inFilesystem: |
Creates a Finder alias to another file on the output disc.
+ (DRFile*) finderAliasPointingTo:(DRFSObject*)original inFilesystem:(NSString*)filesystem;
originalThe file to point he hard link to
filesystemThe filesystem this link will exist on.
An autoreleased DRFile object.
hardLinkPointingTo:inFilesystem: |
Creates a hard link to another file on the output disc.
originalThe file to point he hard link to
filesystemThe filesystem this link will exist on.
An autoreleased DRFile object.
initWithLinkType:pointingTo:inFilesystem: |
Initializes a file object to point to another file on the output disc.
- (id) initWithLinkType:(NSString*)linkType pointingTo:(DRFSObject*)original inFilesystem:(NSString*)filesystem;
linkTypeThe type of link that will be created.
originalThe file to point he hard link to
filesystemThe filesystem this link will exist on.
A DRFile object.
symLinkPointingTo:inFilesystem: |
Creates a symbolic link to another file on the output disc.
+ (DRFile*) symLinkPointingTo:(DRFSObject*)original inFilesystem:(NSString*)filesystem;
originalThe file to point he hard link to
filesystemThe filesystem this link will exist on.
An autoreleased DRFile object.
Last Updated: 2009-08-12