private void btnSave_Click(object sender, EventArgs e) //文件複製、保存方法 { #region 靜態複製文件(寫死) string desPath = @"c:\1\1.chm"; if (File.Exists(desPath)) ... ...
private void btnSave_Click(object sender, EventArgs e) //文件複製、保存方法 { #region 靜態複製文件(寫死) string desPath = @"c:\1\1.chm"; if (File.Exists(desPath)) { //目標文件已存在 if (MessageBox.Show(("文件已存在,是否覆蓋"), "詢問", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) //選擇Yes 確定覆蓋 { //複製文件 File.Copy(@"c:\ls\w3.chm", desPath, true); MessageBox.Show("覆蓋成功"); } } else //文件不存在 { //開始複製 File.Copy(@"c:\ls\w3.chm", desPath, true); MessageBox.Show("複製成功"); } //顯示打開對話框,返回值為dialogResult類型,如果是OK,則用戶點擊的為打開,否則為取消 openFileDialog1.InitialDirectory=(@"c:\1"); //選擇文件時的預設位置 //openfilediaglog1.filter中的fileter是過濾器的作用 //showdialog()顯示對話框的方法. openFileDialog1.Filter = "可執行程式|*.exe|TXT文本|*.txt|圖片文件|*.jpg|所有文件|*.*";//可保存類型 if (openFileDialog1.ShowDialog() == DialogResult.OK)//點擊了打開 { if (saveFileDialog1.ShowDialog() == DialogResult.OK) //說明點yes 也就是確認保存 { File.Copy(openFileDialog1.FileName, saveFileDialog1.FileName, true); MessageBox.Show("保存完成"); } } #endregion } //File類是對文件操作的,包括複製、保存、創建時間、修改時間等等等等。 //Directory功能類似file #region 動態 private void btnCopyContents_Click(object sender, EventArgs e) { string oldDir, newDir; //分別是原文件夾和目標文件夾 FolderBrowserDialog sourceFolder = new FolderBrowserDialog();//動態生成了folderbrowserdialog這個控制項 不需要拖控制項 sourceFolder.Description = "請選擇要複製的文件夾";//顯示了一個簡單說明 if(sourceFolder.ShowDialog()==DialogResult.OK)//點了確定 { oldDir = sourceFolder.SelectedPath; sourceFolder.Description = "請選擇要複製到的文件夾";//修改了一下sourcefolder的說明文字 便於使用者使用 if (sourceFolder.ShowDialog()== DialogResult.OK) //如果確定 那麼執行下麵代碼塊代碼 { newDir = sourceFolder.SelectedPath; //獲取當前要複製的文件夾中的所有文件(註意!不包含下級文件夾及其中的文件) string[] files = Directory.GetFiles(oldDir);//定義了個字元數組來接收源文件內需要複製的文件 foreach (string filepath in files) //也可以用for語句 { //File.Copy(filepath,newDir+"\\"+filepath.Substring(filepath.LastIndexOf("\\")+1),true); //拆分了一下,更為簡潔 string nFileName ; //定義一個string類型,來獲取文件名 nFileName = filepath.Substring(filepath.LastIndexOf("\\") + 1); //獲取要複製的文件夾里的文件名 File.Copy(filepath, newDir + "\\" + nFileName, true); //最後得出要複製的文件夾以及文件夾里的文件名併進行複製 } //MessageBox.Show("複製完成"); } //MessageBox.Show(sourceFolder.SelectedPath); } } #endregion