我正在尝试让ftype创建一个新的文件类型但它无法正常工作:(。这是我的命令:ftype testing="cmd.exe" "%1"
但是它说File type 'testing' not found or no open command associated with it.
我不知道为什么它不起作用,我也按照MSDN中提到的文档。
答案 0 :(得分:2)
这些命令似乎无法在Vista或更高版本中运行。
你不再需要了。只需使用REG.EXE命令调整您的REGISTRY即可建立关联:
REM COMMENT
REM THIS IS AN EXAMPLE. CREATE ABOVE BATCH FILE AND EXECUTE IT.
REM You will be able to open Python files
reg.exe add "%key%\.py" /f /t REG_SZ /d "Python.File" >NUL 2>NUL
reg.exe add "%key%\Python.File" /f /t REG_SZ /d "Python File" >NUL 2>NUL
reg.exe add "%key%\Python.File\DefaultIcon" /f /t REG_SZ /d "%pyhome%DLLs\py.ico" >NUL 2>NUL
reg.exe add "%key%\Python.File\shell\Edit with IDLE\command" /f /t REG_SZ /d "\"%pyhome%pythonw.exe\" \"%pyhome%Lib\idlelib\idle.pyw\" -e \"%%1\"" >NUL 2>NUL
reg.exe add "%key%\Python.File\shell\open\command" /f /t REG_SZ /d "\"%pyhome%pywin.bat\" \"%%1\" %%*" >NUL 2>NUL
reg.exe add "%key%\Python.File\shellex\DropHandler" /f /t REG_SZ /d "{60254CA5-953B-11CF-8C96-00AA00B8708C}" >NUL 2>NUL
答案 1 :(得分:0)
你需要这样的东西:
assoc .test=testfile
ftype testfile="cmd.exe" "%1" %*
虽然无法创建类似.bat
文件的文件扩展名 - 由于安全原因,Windows不允许这样做。Here's an workaround。