Alf, спасибо.
Я попробовал, но что то не так как-то у меня получается
Туплю
Видимо хорошо погулял вчера
Вот код :
using System;
using System.IO;
using System.Text;
namespace FileParser
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
string path = @"D:\NETProjects\FileParser\media_file_list.txt";
string tmp = "";
string delimStr = " ";
char [] delimiter = delimStr.ToCharArray();
string [] split = null;
using (FileStream fs = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.None))
{
byte[] b = new byte[1024];
UTF8Encoding temp = new UTF8Encoding(true);
int k = 0;
while (fs.Read(b,0,b.Length) > 0 && k <10)
{
//Console.WriteLine(temp.GetString(b));
tmp = temp.GetString(b);
split = tmp.Split(delimiter, 1);
foreach (string s in split)
{
Console.WriteLine(s);
}
k++;
}
}
Console.ReadLine();
}
}
}
как-то странно выводит всё