Temporary file association for single cmd.exe session

前端 未结 4 1897
挽巷
挽巷 2020-11-30 08:13

I need to set association for .py files to be executed with specific python version. But I need to make this association only for single cmd.exe session (parallel sessions s

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-30 08:36

    In Windows you can change file associations from the command line using the assoc and ftype commands (You can currently download a Windows Command Reference PDF file from here).

    You can see what file type is currently associated with .py files using the assoc command:

    > assoc .py
    .py=Python.File
    

    With that information you can then check to see what program is currently associated with the Python.File file type using the ftype command:

    > ftype Python.File
    Python.File="C:\Python2.6\python.exe" "%1" %*
    

    You can also use ftype to change the associated program:

    > ftype Python.File="C:\Python2.7\python.exe" "%1" %*
    Python.File="C:\Python2.7\python.exe" "%1" %*
    

    Associations set this way are persistent because they're stored in the Windows Registry. That means you will need to set or restore it to what you want before terminating the cmd.exe session. I'd suggest using one or more batch files for this purpose.

    cmd.exe itself accepts a /k parameter, which you could use to have it execute a batch file at start up that sets up the file association you want initially. You could then also provide a custom quit.bat that would restore it before exiting the cmd session.

提交回复
热议问题