cmd命令行, 在資源管理器中便捷查看文件屬性
CMD中利用資源管理器打開當前路徑
在cmd中需要查看文件夾對應資源時,手動打開十分不便,利用explorer命令可以便捷的打開對應的路徑:
輸出:explorer %cd%回車

效果:

解釋
%cd%為current directory,系統環境變量,表示當前目錄位置,可以輸出確認:

exploreor是資源管理器的命令,可以接受path路徑作為輸入。
ref:
https://wenwen.sogou.com/z/q825809466.htm
https://zhuanlan.zhihu.com/p/30219402
explorer params:
https://blog.csdn.net/yunyu5120/article/details/6024506
https://blog.csdn.net/zhuzhuyule/article/details/51063148

