您好,登錄后才能下訂單哦!
使用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文件時如何實現判斷是否被占用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。