在一些项目中,我们会需要在生成完文件后打开某些文件或者文件夹窗口,这就需要使用到内置的文件打开方式了。
import os import subprocess # 打开文件或者速度最快, 推荐,不过只适用于Windows def start_file(file_path): os.startfile(file_path) # 打开文件或文件夹,到对应文件或者文件夹时只会选中,不会进入到内部, 只适用于Windows def start_file2(file_path): subprocess.Popen(f'explorer /select,"{file_path}"') # 与第一种功能类似,只适用于Windows def start_file3(file_path): # os.system(f"start {file_path}") subprocess.Popen(f"start {file_path}", shell=True) file_path = r"D:\1.gif" # start_file(file_path) # start_file2(file_path) start_file3(file_path)
Linux
os.system('xdg-open "%s"' % foldername)
os.system("gnome-terminal -e 'ls'")
os.system("start powershell.exe cmd /k 'dir'")
引号中内容为执行的命令