zoukankan      html  css  js  c++  java
  • [转]]c# 读写文件时文件正由另一进程使用

    c# 读写文件时文件正由另一进程使用,因此该进程无法访问该文件,在IO处理上遇到了无法操作的问题。

    文件“D:log.txt”正由另一进程使用,因此该进程无法访问该文件。

    log.txt是一个日志文件,不定时都可能由另外的程序对它进行日志记录写入操作。

    今需要对日志文件读取出来,显示在日志查询里,需要用到了IO流。

    1、 FileStream fs = File.OpenRead(url);
    StreamReader sr = new StreamReader((System.IO.Stream)fs, System.Text.Encoding.Default);

    错误提示:文件“D:LogCargoabclogfilecargoabc.txt”正由另一进程使用,因此该进程无法访问该文件。

    2、StreamReader sr = File.OpenText(url);

    错误提示:错误提示:文件“D:LogCargoabclogfilecargoabc.txt”正由另一进程使用,因此该进程无法访问该文件。

    3、 FileStream fs = new FileStream(url, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    StreamReader sr = new StreamReader(fs, System.Text.Encoding.Default);

    正确读取。

    总结:

    这样的情况,不单要与只读方式打开txt文件,而且,需要共享锁。还必须要选择flieShare方式为ReadWrite。因为随时有其他程序对其进行写操作。

    ////////////////////////////////////////

    解决方案:

    FileStream _file = new FileStream(@”c:/a.txt”, FileMode.Create, FileAccess.ReadWrite);
    using (StreamWriter writer1 = new StreamWriter(_file))
    {
    writer.WriteLine(看你要写什么);
    writer1.Flush();
    writer1.Close();

    _file.Close();
    }

    ///////////////////////////////////

    File.Create  正由另一进程使用,因此该进程无法访问该文件。

         FileStream fs= File.Create(path);
                             fs.Close();
                            fs.Dispose();

    转自:http://www.cnblogs.com/furenjian/archive/2013/04/09/3010070.html

    QQ:309488423 Email:leiliu_lucfer@163.com
  • 相关阅读:
    Luogu P4316 绿豆蛙的归宿 题解报告
    Luogu P1850 换教室(NOIP 2016) 题解报告
    Rainbow的信号 题解报告
    $CH5105 Cookies$ 线性$DP+$贪心
    算法竞赛 $0×50$ 动态规划 (+一本通
    $CH5104 I-country$ 线性$DP$
    洛谷$2014$ 选课 背包类树形$DP$
    $SP703 Mobile Service DP$
    $POJ1015 Jury Compromise Dp$/背包
    $POJ1742 Coins$ 多重背包+贪心
  • 原文地址:https://www.cnblogs.com/leiliu-lucifer/p/5699223.html
Copyright © 2011-2022 走看看