Difference between revisions of "HOWTO-Open Files"

Jump to navigation Jump to search
No change in size ,  20:07, 4 August 2016
Fix syntax highlighting
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":
<syntax type="C++">
<source lang="cpp">
#include "common/file.h"
#include "common/file.h"


Line 17: Line 17:
}
}
// access f
// access f
</syntax>
</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:
<syntax type="C++">
<source lang="cpp">
#include "common/file.h"
#include "common/file.h"


Line 28: Line 28:
}
}
// access f
// access f
</syntax>
</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).
TrustedUser
2,147

edits

Navigation menu