python打开文件、文件夹窗口、终端窗口
2022/7/21 1:23:40
本文主要是介绍python打开文件、文件夹窗口、终端窗口,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
简介
在一些项目中,我们会需要在生成完文件后打开某些文件或者文件夹窗口,这就需要使用到内置的文件打开方式了。
打开文件或文件夹
Windows
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)
打开终端并输入内容
Linux
os.system("gnome-terminal -e 'ls'")
Windows
os.system("start powershell.exe cmd /k 'dir'")
引号中内容为执行的命令
这篇关于python打开文件、文件夹窗口、终端窗口的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南