python 打开文件夹或外部文件

os.system 和 os.startfile 都可用于打开文件夹或外部文件
os.path.exists 可用于检测文件或文件夹是否存在

# -*- coding: UTF-8 -*-

import os

if __name__ == "__main__":
	folder_path = "G:\\html"
	program_path = "C:\\Users\\Kansa\\Desktop\\COM-HC.exe"
	#os.system("explorer.exe %s" % folder_path)
	#os.startfile(program_path)
	flag = os.path.exists(program_path)
	if flag :
		os.system("explorer.exe %s" % program_path)
	else:
		print("指定文件不存在")
	

 

你可能感兴趣的:(Python)