Some scripts for Directory Opus (中文介绍).
-
Extract selected archive to subfolder if there's more than one file under the root path, otherwise (only one file) extract it directly.
- Support multiple selection
- Support selecting extracted file/directory after extraction
-
通过 Everything 在当前文件夹下搜索文件。
在首次使用时需要先点击“设置 Everything 路径”进行初始化。默认热键 Ctrl+E。
-
作者:雨浪飘零
-
Paste files into every selected folder.
-
作者:雨浪飘零
-
CloseTabOrLister(built-in since DOpus v12.2.6)If there's only one tab, close the lister, otherwise close current tab. (This script is for reference only. Starting with DOpus v12.2.6, this feature can be implemented by turning on "Lister closes when last tab closes" under
Preferences/Folder Tabs/Options
.)
-
Get the value of the specified column to
glob:result
.For example:
-
Copy files' names and MD5 to clipboard
// The syntax is the same as the "New name" in the Advanced Rename dialog GetColumnValue "* {md5sum}" Clipboard SET {$glob:result} @set glob:result
Corresponding result:
.gitignore 3b121da4db64aa59864e9ed46fa68d0a LICENSE.txt dda85d3253cbd75fd74cceb14c1d8b02
-
Archive files with the name of the parent folder
GetColumnValue "{parent}" Copy ADDTOARCHIVE CREATEFOLDER="{$glob:result}" HERE @set glob:result
@set glob:result
is used to clear the result. It is optional but recommended. -
-
Output text to script log.
e.g.
Output "sourcepath: {sourcepath}"
-
Replace the current path.
Switch between the same folders under C drive and D drive:
@ifpath:C:\* ReplacePath C:\ TO D:\ @ifpath:D:\* ReplacePath D:\ TO C:\
Switch between
Program Files
andProgram Files (x86)
:@ifpath:*\Program Files(\*|) ReplacePath "\Program Files" TO "\Program Files (x86)" @ifpath:*\Program Files '(x86')(\*|) ReplacePath "\Program Files (x86)" TO "\Program Files"
-
Sleep for the specified milliseconds.
e.g.
Sleep 3000
-
Text to speech.
e.g.
Speak "My Moon My Man"
To use a script, you need to download it and put it into /dopusdata\Script AddIns
(except for DialogJump).
-
When in the editor of the file dialog, press Ctrl+G to jump to the last activated folder of listers. If Ctrl+G does not work, type "//cur " to trigger it. (Download the executable file from Releases if you do not have AutoHotkey v2)
-
Output script event information when the event is triggered.
-
Maximize the viewer pane.
Before After This script requires a supporting executable
MaxViewerPane.exe
. You need to download the archive from Releases and extract the folder next to the script (i.e. there should exist/dopusdata\Script AddIns\MaxViewerPane\MaxViewerPane.exe
).Button: MaxViewerPane.dcf
-
Output script object information.
-
Automatically adjust the thumbnail ratio according to the images in the folder or the selected images.
Before After You can set the thumbnail to specified size by running a command like
SmartThumbnailSize SIZE=256
.You can also import the toolbar:
Note that
SmartThumbnailSize
will only set the thumbnail size for the current file diaplay. This means that you can use it to set separate thumbnail sizes for each file display in a dual-display Lister: -
Colorize the folder tab with the color of its label.
Before After -
SizeColByEverything(built-in since DOpus v13)Add a size column which retrieves sizes of files and folders from Everything. (This script is for reference only. Use IbDOpusExt's Size column instead.)
Non-DOpus scripts:
-
Given a file path, open its parent folder (or Git root) and show the file in VS Code.
To associate file types with this script, change their
open
action towscript "...\OpenFileInWorkspace.vbs" "%1"
, where...\OpenFileInWorkspace.vbs
should be the absolute path toOpenFileInWorkspace.vbs
.Can also be combined with ObsidianShell to try to open notes in Obsidian first and then fallback to VS Code workspace.
-
Decode percent-encoding (URL encoding). For example,
%E4%BD%A0%E5%A5%BD
and%u4F60%u597D
can be decoded to你好
. -
Replace
{randomString}
in the new name to random strings. -
Mainly used to fix the character encoding of filenames. For example, you can fix the GBK-encoded
嬻偺嫬奅 椉媀幃
to Shift-JIS-encoded空の境界 両儀式
.Support UTF-8, GBK, Big5, Shift-JIS and EUC-KR encodings.
-
例如将
邊緣行者
转换为边缘行者
。 -
例如将
边缘行者
转换为邊緣行者
。 -
例如将
一百二十三
转换为123
。支持大写数字。 -
例如将
123
转换为一百二十三
。支持大写数字。 -
例如将
123
转换为一二三
。支持大写数字。 -
在汉字和英文单词之间添加空格,例如将
你好world
转换为你好 world
。