MAXSCRIPT: Open max file location in explorer

by

Very short one, written literally 5 minutes ago. Execute below maxscript to create macroscript in Customise User Interface menu, and use it to quickly open folder where the max scene is saved:


macroScript OpenMaxFileLocation
category:"_Piro_Tools"
tooltip:"open max location"
(
command = "explorer"
commandArg = maxFilePatch
shellLaunch command maxFilePath
)

You'll find it here, as usuall:

I've found myself switching through four 3dsmax instances with various projects, copying files between them - I open max scenes from recent menu often, not browse it manually through all the project repositories I have, and this turned out to be quite handy.