Difference between revisions of "HOWTO-Open Files"

Jump to navigation Jump to search
36 bytes added ,  15:17, 25 October 2018
m
Text replacement - "</source>" to "</syntaxhighlight>"
(Fix syntax highlighting)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
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">
<syntaxhighlight lang="cpp">
#include "common/file.h"
#include "common/file.h"


Line 17: Line 17:
}
}
// access f
// access f
</source>
</syntaxhighlight>


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">
<syntaxhighlight lang="cpp">
#include "common/file.h"
#include "common/file.h"


Line 28: Line 28:
}
}
// access f
// access f
</source>
</syntaxhighlight>


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