I'm trying to open a maya scene .ma
at the end of a Python script,
the path looks like that: G:\ProjectPath\Scene.ma
.
But the only command I know for this is MEL command:
file -f -options "v=0; p=17; f=0" -ignoreVersion -typ "mayaAscii" -o
"G:/ProjectPath/Scene.ma";
addRecentFile("G:/ProjectPath/Scene.ma", "mayaAscii");
Do someone know the way to do it in Python?