c# – 如何在.NET中检查文件当前是打开还是正在写入?

前端之家收集整理的这篇文章主要介绍了c# – 如何在.NET中检查文件当前是打开还是正在写入?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试确定文件当前是打开还是使用C#写入.我已经看到类似的SO问题,所有问题都与我的代码类似,它在文件上尝试File.Open.但是当我使用下面的代码运行程序时,我也手动打开文件,我得到“文件当前未锁定”的意外结果.有什么想法/建议/我遗失的任何东西?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;

namespace TestIfFileAccessed
{
    class Program
    {
        static void Main(string[] args)
        {
            string path = @"C:\TEMP\testFile.txt";
            FileInfo filepath = new FileInfo(path);

            if (IsFileLocked(filepath)) {
                Console.WriteLine("File is currently locked");
                Console.ReadLine();
            }
            else
            {
                Console.WriteLine("File is currently NOT locked");
                Console.ReadLine();
            }
        }

        public static bool IsFileLocked(FileInfo file)
        {
            FileStream stream = null;

            try
            {
                stream = file.Open(FileMode.Open,FileAccess.ReadWrite,FileShare.None);
            }
            catch (IOException)
            {
                //the file is unavailable because it is:
                //still being written to
                //or being processed by another thread
                //or does not exist (has already been processed)
                return true;
            }
            finally
            {
                if (stream != null)
                    stream.Close();
            }

            //file is not locked
            return false;
        }
    }
}

解决方法

文本文件通常不会被锁定 – 它们的信息通常被拉入并加载到内存中,所以除非你试图在另一个程序加载文件的同一时刻访问它(这会非常快),那么你不应该有任何问题.

来源 – Similar question

编辑:如果它是单词打开然后你会有问题,因为Word保持流打开.尝试在Word中打开文件(如果有的话)并再次运行代码,我相信它应该可行.否则,如果要查看它是否在记事本中打开,则必须扫描系统上运行的当前进程以获取记事本,并检查进程是否打开了该文件.

原文链接:https://www.f2er.com/csharp/95474.html

猜你在找的C#相关文章