set default directory
In the script I am writing, I ask the user for a file to import (an Excel file).I then create a folder at the same level as the imported file to store all the analysis in on spot.The script basically doesif(directory exists(saveDirectory), , create directory(saveDirectory));set default directory(saveDirectory);
The rest of the script saves png files as analysis results. (Please make the PowerPoi...