command - launch a folder in windows explorer with php -
hi there trying launch folder in windows explorer dosent seem work code trying
$contain_path = 'e:\something\some folder'; $folder = '9999 - folder name here'; $command = 'explorer "'.$contain_path.'\\'.$folder.'\\"'; system($command,$var);
i tried, didn't succeed with
system($command,$var);
its local wampserver project. making such when press button. ajax script call php page , php page executes above code , explorer window pops when execute command given above through command prompt. doing wrong here?
quickest guess explorer
should c:\windows\explorer.exe
Comments
Post a Comment