Raised This Month: $51 Target: $400
 12% 

How to use readfileline but to start from a specific line?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
eyal282
Veteran Member
Join Date: Aug 2011
Old 02-07-2018 , 10:15   How to use readfileline but to start from a specific line?
Reply With Quote #1

Don't tell me to use FileSeek without explaining how it works because I don't understand SM's explanation.

So far this is working, but I can see already how terrible it is...
Code:
		new CurLine = 1;
		while(!IsEndOfFile(fileHandle) && ReadFileLine(fileHandle, lineBuffer, sizeof(lineBuffer)) && Lines < MaxLines)
		{
			if(CurLine >= Lines)
			{
				PrintToConsole(client, "[%i] %s", Lines, lineBuffer);
				Lines++;
			}
			CurLine++;
		}
__________________
I am available to make plugins for pay.

Discord: Eyal282#1334

Last edited by eyal282; 02-07-2018 at 12:31.
eyal282 is offline
Fyren
FyrenFyrenFyrenFyrenFyren FyrenFyrenFyrenFyrenFyren FyrenFyrenFyrenFyrenFyren FyrenFyrenFyrenFyrenFyren
Join Date: Feb 2106
Old 02-07-2018 , 16:23   Re: How to use readfileline but to start from a specific line?
Reply With Quote #2

You're not going to do better than repeatedly calling ReadFileLine unless you know how many bytes each line is ahead of time.
Fyren is offline
eyal282
Veteran Member
Join Date: Aug 2011
Old 02-07-2018 , 16:51   Re: How to use readfileline but to start from a specific line?
Reply With Quote #3

Quote:
Originally Posted by Fyren View Post
You're not going to do better than repeatedly calling ReadFileLine unless you know how many bytes each line is ahead of time.
So my method is the best?
__________________
I am available to make plugins for pay.

Discord: Eyal282#1334
eyal282 is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 02-07-2018 , 17:54   Re: How to use readfileline but to start from a specific line?
Reply With Quote #4

Quote:
Originally Posted by eyal282 View Post
So my method is the best?
For an arbitrary text file, it is the only way.
__________________
asherkin is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:08.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode