1. 根據位址開啟檔案
system.diagnostics.process.start(@"help\操作說明.docx"); //直接開啟文件2. 使用資源檔案
例如: properties.resources._48_label_24px_14018_easyicon_net
4.動態儲存
#region 彈出儲存資料夾選擇視窗類view code//一般選擇檔案儲存位址都用彈出對話方塊來進行選擇
public
class
directoryselect : foldernameeditor
get
}public
string
returnpath
}public
directoryselect()
private
dialogresult rundialog()
public
dialogresult showdialog()
}//一般選擇檔案儲存位址都用彈出對話方塊來進行選擇
//呼叫
//dirbrowser mydirbrowser=new dirbrowser();
//if(mydirbrowser.showdialog()!=dialogresult.cancel)
public
class
dirbrowser : foldernameeditor
get
}public
string
returnpath
}public
dirbrowser()
public
dialogresult showdialog()
//private string _description = "choose directory";
//private string _returnpath = string.empty;
private
string _description = "
請選擇資料夾";
private
string _returnpath =string.empty;
}#endregion
//view code動態新增位址
directoryselect filehlep = new
directoryselect();
if (filehlep.showdialog() ==dialogresult.ok)
//儲存
filestream fs2 = new
filestream(filepath, filemode.openorcreate, fileaccess.readwrite);
fs2.write(bydata ,
0, bydata .length);
fs2.close();
使用c 開啟檔案(夾)及選中檔案
引用 using system.diagnostics 開啟資料夾 開啟資料夾中某個檔案 開啟資料夾並選中單個檔案 或用ie開啟檔案 注 explorer,explorer.exe,select,不區分大小寫,selecet,其中 都不能少,filepath為檔案路徑不包含檔名 注意 filepat...
C 實現開啟檔案或資料夾及選中檔案
開啟資料夾 1 system.diagnostics.process.start filepath 開啟資料夾中某個檔案 1 system.diagnostics.process.start filepath filename 開啟資料夾並選中單個檔案 1 system.diagnostics.pr...
C 中檔案的開啟與關閉
一 知識講解 1.檔案 2.檔案流 3.檔案流類和檔案流物件 二 實現方法講解 建立乙個輸出檔案流物件 使用成員函式close 首先要懂幾個非常重要的概念 儲存在外部介質上 個人認為就是你的硬碟什麼的 的資料集合,是程式設計中的重要概念。對於普通使用者常用到資料檔案和程式檔案。程式中輸入和輸出的物件...