很簡單,呼叫explorer.exe就可以,
runtime.getruntime().exec(
"rundll32 shell32.dll,shellexec_rundll " +
"explorer.exe /select," + targetdirectfilename);
[windows explorer switches]
windows explorer switches are useful in creating rooted folders:
explorer [/e][,/root,][[,/select],]
/euse explorer view (scope and results pane view). the default is
open view (results in pane view only).
/root
specify the object in the "normal" name space that is
used as the root (top level) of this explorer/folder (i.e., local
path or unc name). the default is the desktop).
/select
the parent folder opens and the specified object is selected.
specify the folder unless /select is used. the
default is the root.
如何在DOS下開啟乙個資料夾
今天再做乙個批處理檔案時發現在,想開啟乙個資料夾用 start 打不開,查了下資料才知道。因為 dos 不支援長檔名,只支援6個位元組 也就是中文3個字,英文6個字母 譬如有資料夾 c 我的資料夾開啟就是 start c 我的文 1 後面的1表示,前面重複的第乙個。比如上面的,如果還有個資料夾是 c...
java遍歷資料夾並統計該檔案資料夾數
檔案裡完成了新檔案的建立寫入,以及複製 完成指定目錄的複製,使用當前工作目錄出現問題,因為檔案被開啟無法複製 public class file005 writer.close reader.close writer2.close 檔案目錄複製的方法,統計資料夾的個數 private static ...
Git 如何上傳乙個空資料夾
mkdir aa git status 發現git根本沒發現新建了乙個空資料夾,為何git要忽略空資料夾呢?有的說git開發者不喜歡空資料夾,有的人說空資料夾沒有什麼實際意義,還有的人說空資料夾的話用某些伺服器比如ftp會報錯,總之git不支援空資料夾的提交。解決提交空資料夾的辦法?ignore e...