使用Python打开文件夹窗口

import os
	# path为需要打开文件夹的路径
	path = r'C:/Users/Images'
	os.startfile(path)

猜你喜欢

转载自blog.csdn.net/weixin_43574277/article/details/111936787