cmd 下指定某个浏览器打开某个html文件

使用Chrome浏览器打开指定html文件

例如,我想使用chrome打开当前路径下的index.html文件,可以输入如下命令:

1
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" index.html

命令解释:

  • "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"这个是谷歌浏览器(chrome)的绝对路径,因为路径中间有空格,最好用括号包裹起来。
  • index.html这个是html文件的相对路径。

创建批处理脚本chrome.bat来打开html文件

创建chrome.bat文件,在其中写入:

1
2
@echo off
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" %1

命令解释:

  • @echo off不显示正在运行的命令。
  • "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"谷歌浏览器路径,以你的为准
  • %1这个表示第一个命令行参数,也就是文件名
    然后现在只需要输入chrome.bat index.html就可以完成上述功能了,甚至.bat也可以省略,只需要输入chrome index.html即可。

    chrome.bat配置到path环境变量中

    为了在所有的目录下都可以使用chrome.bat来打来html文件,还需要把chrome.bat的绝对路径配置到path环境变量中。