Using the BOINC File System API
From Unofficial BOINC Wiki
[edit] General
The BOINC System contains a number of functions that allow the manipulation of files and the file system from within the BOINC Server Programs and within the BOINC Client Software.
These functions are collected together into the BOINC File System API.
[edit] Function List
The functions within the BOINC File System API include:
- With a Boolean return code:
- With an integer return code:
- Int boinc copy(const char*, const char*)
- Int boinc delete file(const char*)
- Int boinc make dirs(const char*, const char*)
- Int boinc mkdir(const char*)
- Int boinc rename(const char*, const char*)
- Int boinc rmdir(const char*)
- Int boinc touch file(const char*)
- Int clean out dir(const char*)
- Int dir size(const char*, double&)
- Int file size(const char*, double&)
- Int get filesystem info(double&, double&)
- With other data type return values:
- With no return:

