我正在使用os.startfile(path \ file.stl)打开STL文件。默认情况下,将在“打印3D”程序中打开STL文件(使用Windows 10)。我希望我的Python程序不在默认程序中打开STL文件,而在Paint 3D(或我选择的其他stl查看程序)中打开。如何在非默认程序中打开文件?
import os
os.startfile(r'C:\Users\my\path\to\file.stl')
#opens file.stl in default program, not the program I would like