Is there a way to launch a mac finder window from the RGUI command line? I’m going through a bunch of files and it would be helpful to see the folder instead of having to use list.files()
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To open up the Finder from the RGUI command line, the direct solution is to use:
EDIT: For a specified path,
system("open ~/Desktop")would open the Finder at the user’s desktop, for example, because in MacOSX the default application to open any directory is the Finder.