I'm trying to open a maya scene
.ma
G:\ProjectPath\Scene.ma
file -f -options "v=0; p=17; f=0" -ignoreVersion -typ "mayaAscii" -o
"G:/ProjectPath/Scene.ma";
addRecentFile("G:/ProjectPath/Scene.ma", "mayaAscii");
Here's a quick way you can do it via Python:
import maya.cmds as cmds
# Windows path version
cmds.file( 'G:/ProjectPath/Scene.ma', o = True )
# Mac path version
cmds.file( '/Users/mac/Desktop/Scene.ma', o = True )
Or try this version if you get messages like this # Error: Unsaved changes
:
file_path = 'G:/ProjectPath/Scene.ma'
cmds.file( new = True, force = True )
cmds.file( file_path, open = True )