Well, I've searched the forum alot, but the didn't find the answer.
In my Project I have a lot (about 2000) of small text files with only readable data and I want to include them to my EXE because it should not be accessible to everyone. Here are my questions :
a) Can I include normal text files like at the beginning of my code:
Pseudocode:
dir = Readdir("c:\abcdef\")
Repeat
file$ = Nextfile(dir)
Incbin file$
Forever
b) if a) = yes then is it possible to use the same functions as for normal files:
ie: While not EOF("incbin::abcdef.txt") or
f_open = Readfile("incbin::abcdef.txt") or
n$ = Readline(f_open)
Thx
In my Project I have a lot (about 2000) of small text files with only readable data and I want to include them to my EXE because it should not be accessible to everyone. Here are my questions :
a) Can I include normal text files like at the beginning of my code:
Pseudocode:
dir = Readdir("c:\abcdef\")
Repeat
file$ = Nextfile(dir)
Incbin file$
Forever
b) if a) = yes then is it possible to use the same functions as for normal files:
ie: While not EOF("incbin::abcdef.txt") or
f_open = Readfile("incbin::abcdef.txt") or
n$ = Readline(f_open)
Thx