TrustedUser
2,147
edits
m (Mention that also ARJ files can be accessed as Archive's.) |
(Fix syntax highlighting) |
||
Line 9: | Line 9: | ||
The basic case: you want to open a file called "datafile.dat": | The basic case: you want to open a file called "datafile.dat": | ||
< | <source lang="cpp"> | ||
#include "common/file.h" | #include "common/file.h" | ||
Line 17: | Line 17: | ||
} | } | ||
// access f | // access f | ||
</ | </source> | ||
Or, you want to open a file called "datafile.dat" in a subdirectory "data" of the game directory: | Or, you want to open a file called "datafile.dat" in a subdirectory "data" of the game directory: | ||
< | <source lang="cpp"> | ||
#include "common/file.h" | #include "common/file.h" | ||
Line 28: | Line 28: | ||
} | } | ||
// access f | // access f | ||
</ | </source> | ||
This functions by searching through a default search path managed by the SearchManager (short: SearchMan). | This functions by searching through a default search path managed by the SearchManager (short: SearchMan). |