Re: How to open a windows folder ?



Robert Puts wrote:
I need to open a windows folder (not the windows open dialog, but the actual
folder) from within delphi, something like

cFld:="C:\Windows\System32";
OpenFolder(cFld);

Easy, use shellexecute!


uses shellapi; begin shellexecute(handle,'open','C:\windows\system32',nil,nil,sw_shownormal); end;

Cheers,
Nicholas Sherlock
.