I am trying to open Windows Explorer from within Delphi with a directory I got from the user. This directory is saved as a string. When I use the following code it will not accept it. I have to physically type it in.
sDir : string;
procedure OpenDirectoryClick(Sender: TObject);
begin
ShellExecute(Handle,nil,sDir,nil,nil,sw_Show);
end;
The above code does not work
sDir : string;
procedure OpenDirectoryClick(Sender: TObject);
begin
ShellExecute(Handle,nil,'C:\Windows',nil,nil,sw_Show);
end;
The above code does work
How do I fix this problem?