Bool boinc file exists(const char*)
From Unofficial BOINC Wiki
- The title of this article is incorrect due to technical limitations. The correct title is bool boinc_file_exists(const char*).
Contents |
[edit] Description
Determines if a file exists at a given location.
[edit] Parameters
| Parameter Type | Parameter Name | Purpose & Content |
|---|---|---|
| const char* | path | The location to check for a file's existence. |
[edit] Returns
True/non-zero if a file exists at the given location, false/zero otherwise
[edit] Include & Implementation
| Code Location: | lib/filesys.C |
| Include By: | #include "lib/filesys.h" |
| Function: | bool boinc_file_exists(const char* path) |
| Documentation: | BOINC Source Code: boinc/lib/filesys.C |
| CVS Extract: | cvs -d :pserver:anonymous:@alien.ssl.berkeley.edu:/home/cvs/cvsroot checkout boinc/lib/filesys.C |
[edit] Compatibility
[edit] Code Sample
None.

