使用 Python 模块在文件上打开资源管理器

Use a Python Module to Open Explorer on a file

提问人:Marc B. Hankin 提问时间:11/22/2011 最后编辑:tripleeeMarc B. Hankin 更新时间:12/1/2022 访问量:5092

问:

我是python新手,在用一些非常有用的代码制作模块时遇到了一些困难,这些代码位于:打开文件上的资源管理器

我无法弄清楚我做错了什么。

我收到以下错误消息:

第 31 行:C:\Apps\E_drive\Python_win32Clipboard.pdf第 34 行:r'explorer /select, “C:\Apps\E_drive\Python_win32Clipboard.pdf”' 回溯(大多数 最近调用 last):文件 “P:\Data\VB\Python_MarcsPrgs\Python_ItWorks\Open_Win_Explorer_and_Select_File.py”, 第 42 行,在 Open_Win_Explorer_and_Select_Fil(文件路径) 文件“P:\Data\VB\Python_MarcsPrgs\Python_ItWorks\Open_Win_Explorer_and_Select_File.py”, 第 35 行,Open_Win_Explorer_and_Select_Fil 子进程。Popen(Popen_arg) 文件“C:\Python27\lib\subprocess.py”,第 679 行,init errread、errwrite) 文件“C:\Python27\lib\subprocess.py”,第 893 行,_execute_child startupinfo) WindowsError:[错误 2] 系统找不到指定的文件

这是我的模块:

"""
Open Win Explorer and Select File
# "C:\Apps\E_drive\Python_win32Clipboard.pdf"
"""
import sys
import os, subprocess, pdb

def fn_get_txt_sysarg():
    "Harvest a single (the only) command line argument"
    # pdb.set_trace()
    try:
        arg_from_cmdline = sys.argv[1]
        arg_from_cmdline = str(arg_from_cmdline)
        
    except:
        this_scriptz_FULLName = sys.argv[0]
        
        ErrorMsg = "Message from fn_get_txt_sysarg() in Script (" + this_scriptz_FULLName + '):\n' \
        + "\tThe Script did not receive a command line argument (arg_from_cmdline)"
        
    returnval = arg_from_cmdline

    return returnval


def Open_Win_Explorer_and_Select_Fil(filepathe):
    # harvested from... https://stackoverflow.com/questions/281888/open-explorer-on-a-file
    #import subprocess 
    #subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"') 
    f = str(filepathe)
    print "line 31: " + f
    Popen_arg = "r'explorer /select, " + '"' + f + '"' + "'"
    Popen_arg = str(Popen_arg)
    print "line 34: " + Popen_arg
    subprocess.Popen(Popen_arg)


if __name__ == '__main__': 

    filepath = fn_get_txt_sysarg()
    
    Open_Win_Explorer_and_Select_Fil(filepath)    
python 子进程 pywin32

评论


答:

7赞 srgerg 11/22/2011 #1

我认为问题出在.从输出中请注意,的值为 :Popen_argPopen_arg

r'explorer /select, "C:\Apps\E_drive\Python_win32Clipboard.pdf"'

这实际上是一个 python 原始字符串文字。您希望Popen_arg具有此字符串文本所表示的值,而不是此字符串文本本身。我想如果你把它改成

Popen_arg = r'explorer /select, "' + f + '"'

它会更好地工作。另请注意,该行:

Popen_arg = str(Popen_arg)

没有效果,可以安全移除。

4赞 GreenMatt 11/22/2011 #2

我复制了您的代码并在我的机器上运行它,发现了两个错误。srgerg 提供的答案解决了其中一个错误。另一种是,当命令行上没有指定参数时,Python 会在 fn_get_txt_sysarg() 中触发错误。下面是一些示例代码,修复了错误并进行了一些其他清理:

"""
Open Win Explorer and Select File
"""
import sys
import subprocess

def fn_get_txt_sysarg():
    """Harvest a single (the only expected) command line argument"""
    try:
        return sys.argv[1]    # str() would be redundant here
    except:
        ErrorMsg = 'Message from fn_get_txt_sysarg() in Script (' + sys.argv[0] + '):\n' + '\tThe Script did not receive a command line argument'
        sys.exit(ErrorMsg)

def Open_Win_Explorer_and_Select_Fil(filepath):
    # harvested from: https://stackoverflow.com/questions/281888/open-explorer-on-a-file
    Popen_arg = 'explorer /select,"' + filepath + "'"    # str() is redundant here also
    subprocess.Popen(Popen_arg)

if __name__ == '__main__': 
    filepath = fn_get_txt_sysarg()
    Open_Win_Explorer_and_Select_Fil(filepath)

评论

0赞 srgerg 11/22/2011
我认为您在初始化时错过了资源管理器的“/select”参数。Popen_arg
1赞 srgerg 11/22/2011
此外,资源管理器命令行中的路径确实应该用引号括起来,以防它包含空格字符。所以Popen_arg的初始化应该是Popen_arg = "explorer /select, \"" + f + "\""
1赞 GreenMatt 11/22/2011
@sgerg:/select 选项在我的机器上导致错误,所以我把它省略了。至于空白,我想你说得有道理;将编辑。
1赞 GreenMatt 11/22/2011
@sgerg:解决了 /select 的问题,并将该选项与其他编辑一起放回了。
0赞 Marc B. Hankin 11/22/2011
亲爱的 GreenMatt 和 srgerg:谢谢你们为我解决了这个问题。我很尴尬地说,我一天中的大部分时间都在转动我的轮子。并且非常沮丧。今晚我会快乐和充满希望地上床睡觉,而不是失败和痛苦。既然我认为你的回答很棒,而且他们回答了我的问题,那么我应该使用一些方法(除了这个评论字段)来表明这一点吗?