判断当前文件是否打开/关闭的源码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;


namespace PModifyFileNameT
{
    ///
    /// 判断文件是否存在及是否打开
    ///

    public class FileState
    {
        public FileState()
        {
            
        }


        [DllImport("kernel32.dll")]
        public static extern IntPtr _lopen(string lpPathName, int iReadWrite);


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


        public const int OF_READWRITE = 2;
        public const int OF_SHARE_DENY_NONE = 0x40;
        public static readonly IntPtr HFILE_ERROR = new IntPtr(-1);
        ///
        /// 文件是否处于打开状态
        ///

        /// 文件名称
        /// 是否打开
        public static bool GetFileState(string strFileName)
        {
            bool blnIsOpen = false;
            IntPtr vHandle = _lopen(strFileName, OF_READWRITE | OF_SHARE_DENY_NONE);
            if (vHandle == HFILE_ERROR)
            {
                //  文件处于打开状态
                return true;
            }
            CloseHandle(vHandle);
            return blnIsOpen;
        }
        ///
        /// 文件是否已存在
        ///

        /// 文件名
        /// 是否存在
        public static bool GetFileExists(string strFileName)
        {
            bool blnIsExists = false;
            if (File.Exists(strFileName))
            {
                return true;
            }
            return blnIsExists;
        }
    }
}

你可能感兴趣的:(C#)