36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
int8_t _outputLevel;
OFString *_archivePath;
int _exitStatus;
}
- (id <Archive>)openArchiveWithPath: (OFString *)path
type: (OFString *)type
mode: (char)mode;
- (bool)shouldExtractFile: (OFString *)fileName
outFileName: (OFString *)outFileName;
- (ssize_t)copyBlockFromStream: (OFStream *)input
toStream: (OFStream *)output
fileName: (OFString *)fileName;
- (nullable OFString *)safeLocalPathForPath: (OFString *)path;
@end
|
|
>
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
int8_t _outputLevel;
OFString *_archivePath;
int _exitStatus;
}
- (id <Archive>)openArchiveWithPath: (OFString *)path
type: (OFString *)type
mode: (char)mode
encoding: (of_string_encoding_t)encoding;
- (bool)shouldExtractFile: (OFString *)fileName
outFileName: (OFString *)outFileName;
- (ssize_t)copyBlockFromStream: (OFStream *)input
toStream: (OFStream *)output
fileName: (OFString *)fileName;
- (nullable OFString *)safeLocalPathForPath: (OFString *)path;
@end
|