用来能在网页上方便的打开常用文件夹或文件。
方法:
下面文件放到c:/tools/位置;
执行mycall.reg添加注册信息;
试试在chrome里点击<a href="mycall://openfolder?arg=d:">D:</a>打开D盘;
继续完善mycall.py支持其他功能。
文件:
(1)mycall.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\mycall]
@="URL:mycall Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\mycall\DefaultIcon]
@="cmd.exe,1"
[HKEY_CLASSES_ROOT\mycall\shell]
[HKEY_CLASSES_ROOT\mycall\shell\open]
[HKEY_CLASSES_ROOT\mycall\shell\open\command]
@="cmd /c c:/tools/mycall.bat \"%1\""
(2)mycall.bat
echo %1
python c:\tools\mycall.py %1
(3)mycall.py
#