Quote:
|
Originally Posted by sx ted
CodersGuru, thank u super, have u got equivalent of FileTell()
|
sx ted,
I've updated the program.

Now it includes these functions:
int
gFileOpen(string file_name,int mode);
bool
gFileWrite(int handle,string data);
bool
gFileClose(int handle);
string
gFileRead(int handle,int length=0);
void
gFileSeek(int handle,int offset, int mode);
bool
gFileDelete(string file_name);
int
gFileSize(int handle);
int
gFileTell(int handle);
bool
gFileFlush(int handle);
bool
gFileCopy(string source,string distance,bool IfExists);
bool
gFileMove(string source,string distance);
I hope you enjoy it.