雲端互動 | UX/UI設計、軟體開發、人工智慧和機器人流程自動化(RPA)的客製化解決方案
https://www.cloud-interactive.com/
ShareBox
2019年12月3日 星期二
禁止酷刑公約(Convention against Torture)-首頁
禁止酷刑公約(Convention against Torture)-首頁
https://cat.cib.gov.tw/
Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment(R.O.C. Taiwan)
https://cat-eng.cib.gov.tw/
https://cat.cib.gov.tw/
Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment(R.O.C. Taiwan)
https://cat-eng.cib.gov.tw/
2014年2月15日 星期六
code test
public static DataTable getDistinctTable(DataTable dtSource, string strDistinctColumnName) { DataTable dt = new DataTable(); try { dt = dtSource.DefaultView.ToTable(true, new string[] { strDistinctColumnName }); return dt; } catch (Exception) { return dt; } }
2014年2月9日 星期日
在Windows下使用xcopy複製資料夾忽略特定檔案或資料夾的方法
由於工作上時常需要更新某某資料夾的程式
但資料夾有些檔案或資料夾是不需要更新的
此時,就可以寫個xcopy的批次檔來節省時間
首先建立一個文字檔叫ignored.txt
假設放在d:\來源資料夾 中
裡面的文字請輸入要忽略複製過去的檔名或資料夾名稱
例如:
1.txt
2.txt
\userfile
接著建立xcopy的批次檔
批次檔內容如下:
xcopy d:\來源資料夾 c:\目的資料夾 /s/e/v/c/h/r/y/a/exclude:d:\來源資料夾\ignored.txt
但資料夾有些檔案或資料夾是不需要更新的
此時,就可以寫個xcopy的批次檔來節省時間
首先建立一個文字檔叫ignored.txt
假設放在d:\來源資料夾 中
裡面的文字請輸入要忽略複製過去的檔名或資料夾名稱
例如:
1.txt
2.txt
\userfile
接著建立xcopy的批次檔
批次檔內容如下:
xcopy d:\來源資料夾 c:\目的資料夾 /s/e/v/c/h/r/y/a/exclude:d:\來源資料夾\ignored.txt
接著,執行批次檔即可複製除了ignored文字內容外的所有檔案
訂閱:
文章 (Atom)