|
ADC Home > Reference Library > Reference > Audio > Carbon > Disc Recording Framework Reference
|
DRFile |
| Inherits from: | |
| Declared In: |
Represents a file to be created on the disc.
A file can be either a pointer to an exiting file (residing on a hard drive for example) or can be created at burn time from data passed into the file object as requested. DRFiles can only exist inside of virtual DRFolder objects.
fileWithPath: |
Creates a real file object
+ (DRFile*) fileWithPath:(NSString*)path;
pathAn autoreleased DRFile object.
This type of DRFile reads in data from an existing file located at path and burns that data to disc.
initWithPath: |
Initializes a real file object
- (id) initWithPath:(NSString*)path;
pathAn DRFile object.
This type of DRFile reads in data from an existing file located at path and burns that data to disc.
|