亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用C# 導入Excel文件時如何實現判斷是否被占用

發布時間:2020-11-17 16:28:14 來源:億速云 閱讀:382 作者:Leah 欄目:編程語言

使用C# 導入Excel文件時如何實現判斷是否被占用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

C# 中Excel導入時 判斷是否被占用三種方法

Excel導入時 判斷是否被占用,三種方法:

1:Win7可以,WIN10不可以

try 
    { 
     //原理,如果文件可以被移動,說明未被占用 
     string strPath = "C:\\123OK.Excel"; 
     string strPath3 = "C:\\123OK22.Excel"; 
     File.Move(strPath, strPath3); 
     File.Move(strPath3, strPath); 
    } 
    catch 
    { 
     MessageBox.Show("文件被占用!"); 
     return; 
    } 

2:文件流

try 
    { 
     //原理,如果文件可寫,說明未被占用 
     System.IO.FileStream stream = System.IO.File.OpenWrite("文件路徑"); 
     stream.Close(); 
    } 
    catch 
    { 
     MessageBox.Show("文件被占用!"); 
     return; 
    } 

3:WIN32 API調用(強烈推薦)

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 
 
using System.IO; 
using System.Runtime.InteropServices; 
 
namespace WindowsFormsApplication1 
{ 
 public partial class Form1 : Form 
 { 
  [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 readonly IntPtr HFILE_ERROR = new IntPtr(-1); 
 
  public Form1() 
  { 
   InitializeComponent(); 
  } 
 
  private void button1_Click(object sender, EventArgs e) 
  { 
   try 
   { 
    string vFileName = @"c:\123.xlsx"; 
    if (!File.Exists(vFileName)) 
    { 
     MessageBox.Show("文件都不存在!"); 
     return; 
    } 
    IntPtr vHandle = _lopen(vFileName, OF_READWRITE | OF_SHARE_DENY_NONE); 
    if (vHandle == HFILE_ERROR) 
    { 
     MessageBox.Show("文件被占用!"); 
     return; 
    } 
    CloseHandle(vHandle); 
    MessageBox.Show("沒有被占用!"); 
   } 
   catch (Exception ex) 
   { 
    throw ex; 
   } 
  } 
 } 
} 

關于使用C# 導入Excel文件時如何實現判斷是否被占用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

小金县| 溆浦县| 沾化县| 六盘水市| 杭州市| 东明县| 漯河市| 嵊州市| 梁山县| 濮阳县| 鲁山县| 海门市| 怀仁县| 苏尼特左旗| 七台河市| 阿荣旗| 山东省| 南阳市| 西青区| 拜城县| 石楼县| 峨边| 双牌县| 新巴尔虎左旗| 平乐县| 老河口市| 铜川市| 桦川县| 宁波市| 德惠市| 左权县| 敦煌市| 永善县| 娄底市| 五常市| 水城县| 茌平县| 凤阳县| 翼城县| 汝阳县| 梓潼县|