原始碼如下:
using system.management;
using system.io;
在你的事件中新增如下**
connectionoptions conn = new connectionoptions();
conn.username = "administrator";//登入遠端電腦的賬戶
conn.password = "hanroc";//登入遠端電腦的密碼
managementpath path = new managementpath();
//其中root\cimv2是固定寫法
path.path = @"\\172.26.41.1\root\cimv2";
managementscope ms = new managementscope();
ms.options = conn;
ms.path = path;
ms.connect();
//這裡的例子讀取檔案的最後修改日期
objectquery query = new objectquery("select * from cim_datafile where name = 'c:\\\\kvoffice.log'");
managementobjectsearcher searcher = new managementobjectsearcher(ms,query);
managementobjectcollection collection = searcher.get();
string time = "";
foreach (managementobject obj in collection)
response.write(time);
C 讀取檔案方法
解決亂碼問題 方法一 需要從streamreader中指定引數即可 streamreader objreader new streamreader filepath,unicodeencoding.getencoding gb2312 string sline while sline null ob...
C 讀取CSV檔案的方法
在很多系統中,都需要讀取csv檔案,我在以前的乙個專案中也遇到過要將csv檔案中的資料讀取到datatable中進行處理,下面的 getcsvfile s filename and data獲取csv檔案中資料,並將資料匯入datatable中 mycsvdt 用來裝csv檔案中資料的datatab...
C 讀取CSV檔案的方法
在很多系統中,都需要讀取csv檔案,我在以前的乙個專案中也遇到過要將csv檔案中的資料讀取到datatable中進行處理,下面的 getcsvfile s filename and data獲取csv檔案中資料,並將資料匯入datatable中 mycsvdt 用來裝csv檔案中資料的datatab...