0

私はこれらすべてにかなり慣れていませんが、この作業を行うのにかなり近づいているように感じます。少し助けが必要です! 別のアプリケーションで開いているファイルの最後の行を読み取って返すことができる DLL を作成したいと考えています。これは私のコードがどのように見えるかです。while ステートメントに何を入れればよいかわかりません。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace SharedAccess
{
    public class ReadShare {
        static void Main(string path) {

            FileStream stream = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
            StreamReader reader = new StreamReader(stream);

            while (!reader.EndOfStream)
            {
                //What goes here?
            }
        }
    }
}
4

2 に答える 2

3

最後の行を読むには、

var lastLine = File.ReadLines("YourFileName").Last();

大きなファイルの場合

public static String ReadLastLine(string path)
{
    return ReadLastLine(path, Encoding.ASCII, "\n");
}
public static String ReadLastLine(string path, Encoding encoding, string newline)
{
    int charsize = encoding.GetByteCount("\n");
    byte[] buffer = encoding.GetBytes(newline);
    using (FileStream stream = new FileStream(path, FileMode.Open))
    {
        long endpos = stream.Length / charsize;
        for (long pos = charsize; pos < endpos; pos += charsize)
        {
            stream.Seek(-pos, SeekOrigin.End);
            stream.Read(buffer, 0, buffer.Length);
            if (encoding.GetString(buffer) == newline)
            {
                buffer = new byte[stream.Length - stream.Position];
                stream.Read(buffer, 0, buffer.Length);
                return encoding.GetString(buffer);
            }
        }
    }
    return null;
}

ここを参考にした、 大きなテキストファイルの最後の行だけを読む方法

于 2014-04-10T17:27:59.177 に答える