简体   繁体   中英

Opening a specific file with the program specified in Python.

This is the python code I wrote to open a specific nuke file and a specific 3de file. The nuke works and opens the specific nuke file but the 3de doesn't. I get an error saying "3de: command not found". I'm trying to run this in from Maya to open through the terminal.

nFile="/sam/stuff/new.nk"
tFile="/sam/stuff/new.3de"



os.system("nuke %s &" %(nFile))    
os.system("3de %s &" %(tFile))

The 3de needed the full filepath and the 3de flag open in front of the project filepath. Easy fix thanks to /user/that other guy.

nFile="/sam/stuff/new.nk"
tFile="/sam/stuff/new.3de"



os.system("nuke %s &" %(nFile))    
os.system("/c/3de/3de -open %s &" %(tFile))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM