2015-03-08 17:20:10 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin
|
|
|
|
|
{
|
2015-08-20 01:06:44 -04:00
|
|
|
|
class IFile
|
2015-03-08 17:20:10 -04:00
|
|
|
|
{
|
2015-08-20 01:06:44 -04:00
|
|
|
|
public IFile(String fileName)
|
2015-03-08 17:20:10 -04:00
|
|
|
|
{
|
|
|
|
|
//Not safe for directories with more than one folder but meh
|
|
|
|
|
_Directory = fileName.Split('\\')[0];
|
|
|
|
|
Name = (fileName.Split('\\'))[fileName.Split('\\').Length-1];
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(_Directory))
|
|
|
|
|
Directory.CreateDirectory(_Directory);
|
|
|
|
|
|
|
|
|
|
if (!File.Exists(fileName))
|
2015-07-06 13:13:42 -04:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
FileStream penis = File.Create(fileName);
|
|
|
|
|
penis.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch
|
|
|
|
|
{
|
2015-07-15 17:11:29 -04:00
|
|
|
|
Console.WriteLine("Unable to open log file for writing!");
|
2015-07-06 13:13:42 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Handle = new StreamReader(new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite));
|
|
|
|
|
sze = Handle.BaseStream.Length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
//Console.WriteLine("Unable to open log file for writing!");
|
2015-03-08 17:20:10 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-20 01:06:44 -04:00
|
|
|
|
public IFile(String file, bool write)
|
2015-03-08 17:20:10 -04:00
|
|
|
|
{
|
|
|
|
|
Name = file;
|
2015-03-11 00:47:34 -04:00
|
|
|
|
writeHandle = new StreamWriter(new FileStream(Name, FileMode.Create, FileAccess.Write, FileShare.ReadWrite));
|
2015-03-08 17:20:10 -04:00
|
|
|
|
sze = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long getSize()
|
|
|
|
|
{
|
|
|
|
|
sze = Handle.BaseStream.Length;
|
|
|
|
|
return sze;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Write(String line)
|
|
|
|
|
{
|
2015-07-06 13:13:42 -04:00
|
|
|
|
if (writeHandle != null)
|
|
|
|
|
{
|
|
|
|
|
writeHandle.WriteLine(line);
|
|
|
|
|
writeHandle.Flush();
|
|
|
|
|
}
|
2015-03-08 17:20:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String[] getParameters(int num)
|
|
|
|
|
{
|
|
|
|
|
if (sze > 0)
|
|
|
|
|
{
|
|
|
|
|
String firstLine = Handle.ReadLine();
|
|
|
|
|
String[] Parms = firstLine.Split(':');
|
|
|
|
|
if (Parms.Length < num)
|
|
|
|
|
return null;
|
|
|
|
|
else
|
|
|
|
|
return Parms;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-10 16:45:20 -04:00
|
|
|
|
public void Close()
|
|
|
|
|
{
|
|
|
|
|
if(Handle != null)
|
|
|
|
|
Handle.Close();
|
|
|
|
|
if (writeHandle != null)
|
|
|
|
|
writeHandle.Close();
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-08 17:20:10 -04:00
|
|
|
|
public String[] readAll()
|
|
|
|
|
{
|
2015-03-10 16:45:20 -04:00
|
|
|
|
return Handle.ReadToEnd().Split(new char[] { '\n' }, StringSplitOptions.RemoveEmptyEntries);
|
2015-03-08 17:20:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 00:02:12 -04:00
|
|
|
|
public String getLines()
|
|
|
|
|
{
|
|
|
|
|
return Handle.ReadToEnd();
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-08 17:20:10 -04:00
|
|
|
|
public String[] Tail(int lineCount)
|
|
|
|
|
{
|
|
|
|
|
var buffer = new List<string>(lineCount);
|
|
|
|
|
string line;
|
|
|
|
|
for (int i = 0; i < lineCount; i++)
|
|
|
|
|
{
|
|
|
|
|
line = Handle.ReadLine();
|
|
|
|
|
if (line == null) return buffer.ToArray();
|
|
|
|
|
buffer.Add(line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int lastLine = lineCount - 1; //The index of the last line read from the buffer. Everything > this index was read earlier than everything <= this indes
|
|
|
|
|
|
|
|
|
|
while (null != (line = Handle.ReadLine()))
|
|
|
|
|
{
|
|
|
|
|
lastLine++;
|
|
|
|
|
if (lastLine == lineCount) lastLine = 0;
|
|
|
|
|
buffer[lastLine] = line;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lastLine == lineCount - 1) return buffer.ToArray();
|
|
|
|
|
var retVal = new string[lineCount];
|
|
|
|
|
buffer.CopyTo(lastLine + 1, retVal, 0, lineCount - lastLine - 1);
|
|
|
|
|
buffer.CopyTo(0, retVal, lineCount - lastLine - 1, lastLine + 1);
|
|
|
|
|
return retVal;
|
|
|
|
|
}
|
|
|
|
|
//END
|
|
|
|
|
|
|
|
|
|
private long sze;
|
|
|
|
|
private String Name;
|
|
|
|
|
private String _Directory;
|
|
|
|
|
StreamReader Handle;
|
|
|
|
|
StreamWriter writeHandle;
|
|
|
|
|
}
|
|
|
|
|
}
|