MAK89
9 years agoOccasional Contributor
How to open desired folder hierarchy from local system without using name mapping ?
How to open desired folder hierarchy from local system without using name mapping ?
It is partially working , it open just my document folder but not complete path.
I use the follwing code
Sys.OleObject("WScript.Shell").Run("explorer C:\Users\manas\Documents\TestComplete 11 Projects\ProjectSuite1");
but it open document folder instead of ProjectSuite1.
Hi,
I believe this is because the path contains a space.
Try something like this (note quotes around the path):
Sys.OleObject("WScript.Shell").Run("explorer ""C:\Users\manas\Documents\TestComplete 11 Projects\ProjectSuite1""");