Reply To: FindChangeByList text files on shared drive?

#12243955
Brian Pifer
Participant

Leave line 113 as: var myFindChangeFile = myFindFile(“/FindChangeSupport/FindChangeListNAME1.txt”)

Then change the myFindFileFunction beginning around line 192 to:

function myFindFile(myFilePath){
var folderPath = “F:/Production/5. Tools/1. Scripts”;
myFilePath = folderPath + myFilePath;
if(File(myFilePath).exists == false){
//Display a dialog.
myFilePath = File.openDialog(“Choose the file containing your find/change list”);
}
return myFilePath;
}

This article was last modified on February 19, 2020

Comments (0)

Loading comments...