shellexecuteinfo shexecinfo =;
shexecinfo.cbsize = sizeof(shellexecuteinfo);
shexecinfo.fmask = see_mask_invokeidlist ;
shexecinfo.hwnd = null;
shexecinfo.lpverb = "properties";
shexecinfo.lpfile = "c://"; //can be a file as well
shexecinfo.lpparameters = "";
shexecinfo.lpdirectory = null;
shexecinfo.nshow = sw_show;
shellexecuteex(&shexecinfo);
獲得指定目錄下所有*.mht檔案的屬性
void cgetdirectoryandfiledlg::onbuttonget()
m_listfile.deleteallitems();
m_listfile.setextendedstyle(lvs_ex_fullrowselect|lvs_ex_gridlines);
m_listfile.settextcolor(rgb(255,0,0));
m_listfile.insertcolumn(0,"檔名",lvcfmt_left,250);
m_listfile.insertcolumn(1,"提示文字",lvcfmt_left,100);
m_listfile.insertcolumn(2,"建立時間",lvcfmt_left,150);
m_listfile.insertcolumn(3,"最後訪問時間",lvcfmt_left,150);
m_listfile.insertcolumn(4,"最後修改時間",lvcfmt_left,150);
m_listfile.insertcolumn(5,"檔案屬性",lvcfmt_left,60);
int i=0;
ctime time;
cstring strtime;
while(blnexact)
m_listfile.setitemtext(i,5,strtime);
filename[i]=findfiledata.cfilename;
m_strfilelist=m_strfilelist+filename[i];
i++;
blnexact=::findnextfile( hfile,&findfiledata);
}::findclose(hfile);
updatedata(false);
}
treeview顯示資料夾目錄
效果圖 aspx頁面 code asp treeview id tvfloder runat server ontreenodeexpanded tvfloder treenodeexpanded asp treeview cs code treenode tn new treenode tn.te...
phpstudy開啟不顯示資料夾
前一段時間前後端互動需要用到後端伺服器了,然後安裝了phpstudy結果問題來了,人家安裝上之後瀏覽器輸入localhost就可以看到資料夾,就像這樣 這是乙個首頁,是安裝phpstudy的時候自帶的乙個東西,下邊是安裝之後自帶的東西 php mysql是我自建的資料夾,預設是只有最上邊那個資料夾 ...
如何讓nginx顯示資料夾目錄
1.如何讓nginx顯示資料夾目錄 vi etc nginx conf.d default.conf 新增如下內容 location 不過有個缺點 html檔案的抬頭寫的是index of dns log 還有乙個問題是這裡開啟的是全域性的目錄瀏覽功能,那麼如何實現具體目錄瀏覽功能呢?2.只開啟 部...