码迷,mamicode.com
首页 > Windows程序 > 详细

C#判断文件是否被其他程序打开的几种方法

时间:2020-06-28 20:26:31      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:none   const   调用dll   bool   return   exist   pre   static   handle   

方法一

直接使用流判断

        public static bool isFileLocked(string pathName)
        {
            try
            {
                if (!File.Exists(pathName))
                {
                    return false;
                }

                using (var fs = new FileStream(pathName, FileMode.Open, FileAccess.Read, FileShare.None))
                {
                    fs.Close();
                }
            }
            catch
            {
                return true;
            }
            return false;
        }

方法二

调用dll的一些方法

    public class FileStatus
    {
        [DllImport("kernel32.dll")]
        private static extern IntPtr _lopen(string pathName, int readWrite);

        [DllImport("kernel32.dll")]
        private static extern bool CloseHandle(IntPtr hObject);

        private const int OF_READWRITE = 2;
        private const int OF_SHARE_DENY_NONE = 0x480;
        private static readonly IntPtr HFILE_ERROR = new IntPtr(-1);

        public static bool FileIsOpen(string pathName)
        {
            if (!File.Exists(pathName))
            {
                return false;
            }

            IntPtr handle = _lopen(pathName, OF_READWRITE | OF_SHARE_DENY_NONE);
            if (handle == HFILE_ERROR)
            {
                return true;
            }

            CloseHandle(handle);
            return false;
        }
    }

C#判断文件是否被其他程序打开的几种方法

标签:none   const   调用dll   bool   return   exist   pre   static   handle   

原文地址:https://www.cnblogs.com/zuixime0515/p/13204591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!