Forum Discussion
AlexeyKolosov
Staff
15 years agoHi Mark,
Here is the script than converts a short name to a long name:
function GetLongName(tempPath)
{
var objShell, objFolder;
objShell=Sys.OleObject("Shell.Application");
objFolder=objShell.Namespace(tempPath);
Log.Message(objFolder.Self.Path);
objShell=null;
}