gpt4 book ai didi

Windows 7 中的 Python 文件资源管理器

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:41 24 4
gpt4 key购买 nike

我只是想找到一种在 Windows 7 及更高版本中通过 python 代码打开和关闭任何特定文件夹的方法,任何建议都会有很大的帮助。谢谢。

这是打开目录

task = subprocess.Popen('explorer "C:\\', shell=True)
p = task.pid

这个是通过PID来关闭

os.popen('TASKKILL /PID ' + str(p) + ' /F')

问题在于它给我的关闭代码和错误:

ERROR:The proces "i.e 12086" not found.

最佳答案

我访问文件的首选模式如下:

with open("file.txt", "r") as file:
# do stuff with file

这使用python上下文管理来自动关闭文件。

来自here了解如何从 Windows 命令行打开文件资源管理器:

import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')

http://www.geoffchappell.com/studies/windows/shell/explorer/cmdline.htm

要终止您所做的进程:

import os
os.system("taskkill /pid <ProcessID>")

关于Windows 7 中的 Python 文件资源管理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54185240/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com