如何更改默认程序以在Python中打开文件?

问题描述 投票:0回答:1

我正在使用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
python-3.x stl
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.