WinPython+Portable Gitのコマンドプロンプトをエクスプローラーの右クリックから指定したフォルダーで開くようにする

バッチファイル

WinPythonフォルダーにバッチファイルを作成

送るフォルダーshell:SendTo
にバッチファイルのショートカットを作成

“D:\WinPython\#winpythonHere.bat"

@echo off
call %~dp0\scripts\env_for_icons.bat  %*
SET PATH=%PATH%;%WINPYDIRBASE%\PortableGit;%WINPYDIRBASE%\PortableGit\bin
%~d1
if exist "%1\" (
 cd "%1"
) else if exist "%1" (
 cd "%~p1"
) else (
 echo "%1 は存在しません."
)

cmd.exe /k

エクスプローラーでファイルフォルダーを選択後右クリックして送るの中にあるバッチファイルのショートカットを実行するとコマンドプロンプトが開きます。

Python

Posted by eightban