0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【サクラエディタ】ファイルのフォルダを開くマクロ

Posted at

これはなに?

サクラエディタで開いているファイルのフォルダを開くためのマクロ(スクリプト)。
マクロ格納フォルダに置き、ツールバーのアイコンに登録すると便利。(%APPDATA%\sakura)

使用例

ファイルのコピー、リネーム等でフォルダを開きたいときに使う。

ソース

ファイルのフォルダを開く.vbs
Option Explicit

Dim FSO:	Set FSO = CreateObject("Scripting.FileSystemObject")
Dim WSH:	Set WSH = CreateObject("WScript.Shell")

Dim strFilePath
Dim strFolderPath

' 開いているファイルのパスを取得
' (未保存の場合は空文字列が返る)
strFilePath = Editor.GetFilename()

' 開いているファイルのフォルダを開く
If strFilePath <> "" Then
	strFolderPath = FSO.GetParentFolderName(strFilePath)
	Call WSH.run("explorer.exe " & strFolderPath)
End If

設定方法

メニュー > 設定 > 共通設定

「マクロ」タブ

  1. 登録先のスロットを選択
  2. マクロファイルを選択
  3. 名称を入力 (任意)
  4. 「設定」ボタンを押下

image.png

「ツールバー」タブ

  1. 「外部マクロ」を選択
  2. 「マクロ」タブで設定したものを選択
  3. 追加ボタン(→ or ≫)を押下

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?