0

我正在使用 Windows 7 我想传递文件名作为我想通过自定义 url 打开的参数。我关注了链接http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx

我的python代码是:

import os,sys
selectedFileName=(sys.argv)[1]
os.startfile(selectedFileName)

我的注册表设置是:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cultest]
@="\"URL:cultest Protocol\""
"URL Protocol"="\"\""

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cultest\DefaultIcon]


[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cultest\shell]

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cultest\shell\open]

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cultest\shell\open\command]
@="\"D:\\Test\\argument\\dist\\cultest.exe\" \"%1\""

所以我在 webbrowser/mozila/explorer 中输入了哪个 url。我尝试使用 cultest:"C:/Users/liverpool/Desktop/Hostname.txt" 但它不起作用 C:/Users/liverpool/Desktop/Hostname.txt 是文件名

在此处输入图像描述

4

1 回答 1

0

您的注册表代码和屏幕打印不一样:“cultest.exe”和“curlargu.exe”。

而且您使用了 HKEY_LOCAL_MACHINE 而不是 HKEY_CLASSES_ROOT。他们指向相同,但它可能会有所作为。如果 cultest.exe 是您在上述文件夹中的程序,则此注册表代码应该可以工作。您的浏览器 URL 调用是正确的。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\cultest]
@="URL:cultest Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\cultest\DefaultIcon]
@="D:\\Test\\argument\\dist\\cultest.exe,0"

[HKEY_CLASSES_ROOT\cultest\shell]

[HKEY_CLASSES_ROOT\cultest\shell\open]

[HKEY_CLASSES_ROOT\cultest\shell\open\command]
@="D:\\Test\\argument\\dist\\cultest.exe \"%1\""

我今天为自己的程序使用了相同的 REG 文件,它正在工作。我注意到斜线的一些细微差别......

于 2014-07-18T12:18:38.483 回答