File: bkExtract.h

package info (click to toggle)
isomaster 1.3.13-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 2,872 kB
  • ctags: 826
  • sloc: ansic: 11,238; makefile: 172; sh: 99; python: 11
file content (10 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
int copyByteBlock(VolInfo* volInfo, int src, int dest, unsigned numBytes);
bool existsOnFs(const char* pathAndName);
int extract(VolInfo* volInfo, BkDir* parentDir, char* nameToExtract, 
            const char* destDir, const char* nameToUse, bool keepPermissions);
int extractDir(VolInfo* volInfo, BkDir* srcDir, const char* destDir, 
               const char* nameToUse, bool keepPermissions);
int extractFile(VolInfo* volInfo, BkFile* srcFileInTree, const char* destDir, 
                const char* nameToUse, bool keepPermissions);
int extractSymlink(BkSymLink* srcLink, const char* destDir, 
                   const char* nameToUse);