怎樣即選擇檔案又選擇資料夾路徑

2021-04-19 10:18:33 字數 954 閱讀 5886

·選擇檔案和資料夾的對話方塊

charszdir[max_path];

browseinfobi;

itemidlist*pidl;

cstringstrdlgtitle="請選擇需要上傳的資料:";

bi.hwndowner=this->m_hwnd;

bi.pidlroot=null;

bi.pszdisplayname=szdir;

bi.lpsztitle=strdlgtitle;

bi.ulflags=bif_browseincludefiles;

bi.lpfn=null;

bi.lparam=0;

bi.iimage=0;

pidl=shbrowseforfolder(&bi);

if(pidl==null)

return;

if(!shgetpathfromidlist(pidl,szdir))

return;

cstring str;

str = szdir;

messagebox(str);

delphi 選擇資料夾,路徑選擇,瀏覽資料夾

選擇資料夾,路徑選擇,資料夾資源管理器 推薦 selectdirectory vcl.filectrl.hpp if selectdirectory 請選擇目錄 daopath selectdirectory include filectrl.hpp const seldirhelp 1000 vo...

delphi之選擇資料夾路徑 選擇檔案路徑

一 opendialog選擇檔案路徑 procedure tform4.but2click sender tobject varchobak topendialog begin chobak topendialog.create nil if chobak.execute then begin sh...

VB選擇資料夾並取資料夾名

如下 引用microsoft shell controls and automation dim shella as new shell private sub command1 click 建立乙個按鈕物件 dim shellb as folder set shellb shella.browse...