using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace day_09_小型資源管理器
//檔案長度
public string filename //檔名
public string filepath//檔案路徑
public string filetype //檔案型別}}
using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.io;
using system.linq;
using system.text;
using system.threading.tasks;
using system.windows.forms;
namespace day_09_小型資源管理器
private void treeview1_afterselect_1(object sender, treevieweventargs e)
private void bindinfo(treenode node)
//獲取目錄下檔案列表
fileinfo fileinfo = directoryinfo.getfiles();
//定義泛型集合儲存檔案資訊
listfiles = new list();
foreach (fileinfo myfile in fileinfo)
listviewitem item = null;
this.listview1.items.clear();
foreach (myfile file in files)
}private void form1_load(object sender, eventargs e)
private void 複製toolstripmenuitem_click(object sender, eventargs e)
folderbrowserdialog fbd = new folderbrowserdialog();
dialogresult result = fbd.showdialog();
string sourcepath = listview1.selecteditems[0].subitems[3].text;
string despath = null;
if (result == dialogresult.ok)
}private void 刪除toolstripmenuitem_click(object sender, eventargs e)
// //要刪除的檔案
// string sourcepath = listview1.selecteditems[0].subitems[3].text;
// dialogresult result = messagebox.show(this, "確定要刪除嗎?", "警告!", messageboxbuttons.okcancel, messageboxicon.warning);
// if (result == dialogresult.ok)
// folderbrowserdialog fbd = new folderbrowserdialog();
string sourcepath = listview1.selecteditems[0].subitems[3].text;
file.delete(sourcepath);
messagebox.show("刪除成功!");
//重新整理一下
this.listview1.selecteditems[0].remove();}}
} using system;
using system.collections.generic;
using system.linq;
using system.threading.tasks;
using system.windows.forms;
namespace day_09_小型資源管理器
}}
簡單資源管理器
下面共享乙個我自己的資源管理器,很簡單的,看起來也明白,主要是我是新手,不想寫的太複雜,自己專案使用的好用,便是最好的。using unityengine using system.collections using system.collections.generic using system p...
Windows資源管理器
在資源管理器中,選定多個非連續檔案的操作為 a 按住shift鍵,單擊每乙個要選定的檔案圖示 b 按住ctrl鍵,單擊每乙個要選定的檔案圖示 c 先選中第乙個檔案,按住shift鍵,再單擊最後乙個要選定的檔案圖示 d 先選中第乙個檔案,按住ctrl鍵,再單擊最後乙個要選定的檔案圖示 檔案abc.bm...
QTTabBar Windows資源管理器增強外掛程式
要實現更高效windows資源管理器無非兩種方式 開發一款更高效的軟體來管理資源增強現有的windows資源管理器 第一種方式造成windows資源管理器和非官方管理軟體的並存,使用非官方管理軟體必然要啟動該軟體,會造成一種 割裂感 且從形式上感覺臃腫了許多。而第二種增強的方式的顯得更加 親切 qt...