FileSeek issue New comment qjol 2010.09.01 23:41 hi everyone if someone can explain to me if FileSeek(handle,100,SEEK_END); means to go forward 100 bytes or go back 100 bytes from the end of the file? if means go forward? is it FileSeek(handle,-100,SEEK_END); means to go back 100 bytes? if either of above how can i go back from the end X bytes thanks in advanced [Archive!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Couldn't go anywhere without you - 2. Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes FileWrite Ray 2010.09.02 07:14 #1 See which one gives an error, use the other one. qjol 2010.09.02 07:35 #2 actually this is my problem both of them don't give me an error Ray 2010.09.02 10:27 #3 FileSeek(handle, -100, SEEK_END); See FileTell() That will help with your learning. qjol 2010.09.02 11:42 #4 thanks a lot New comment
hi everyone
if someone can explain to me if
FileSeek(handle,100,SEEK_END);
means to go forward 100 bytes or go back 100 bytes from the end of the file?
if means go forward?
is it FileSeek(handle,-100,SEEK_END);
means to go back 100 bytes?
if either of above
how can i go back from the end X bytes
thanks in advanced