浏览目录:<br>var<br> bi: TBrowseInfo;<br> pidl: pItemIdList;<br> strpath, displayname: string;<br>begin<br> SetLength (displayname, 100);<br><br> bi.hwndOwner := Handle;<br> bi.pidlRoot := nil;<br> bi.pszDisplayName := pChar (displayname);<br> bi.lpszTitle := '升级文件所在目录选择';<br> bi.ulFlags := $0040 OR BIF_VALIDATE;<br> bi.lpfn := nil;<br> bi.lParam := 0;<br><br> pidl := ShBrowseForFolder (bi);<br><br> SetLength (strPath, 100);<br> ShGetPathFromIdList (pidl, PChar(strPath));<br> FSvrDir := Trim(Copy(strPath,0,Pos(#0,strpath)-1));<br>end;