【TP脚本】在OB里搜索文件夹的方法

有的时候只想按关键字检索文件夹(而非笔记),并快速跳转过去——遂写了这个脚本:

效果演示:
10d7110c-1a2f-4c2f-8526-873b5eb7de13

方法:安装 Templater 插件,然后使用这个 Templater 脚本:

<%*
// 获取所有文件夹路径
let folders = app.vault.getAllFolders();
// 过滤掉根目录
folders = folders.filter(folder => folder.path !== "/");

const autoCollapse = true;

// 准备用于显示的文件夹名称和对应的路径
const folderPaths = folders.map(f => f.path);
const folderNames = folders.map(f => {
    // 获取文件夹深度,用于显示缩进
    const depth = f.path.split('/').length - 1;
    const indent = '  '.repeat(depth);
    // 使用 📁 emoji 来表示文件夹
    return `${indent}📁 ${f.name} (${f.path})`;
});

// 使用 Templater 的 suggester 来创建选择器
// tp.system.suggester 的第一个参数是显示的文本数组或函数,第二个参数是实际值的数组
let selectedFolderPath = await tp.system.suggester(folderNames, folderPaths);

// 如果用户取消了选择,则退出
if (selectedFolderPath === null) return;

// 获取选中的文件夹对象
const selectedFolder = app.vault.getAbstractFileByPath(selectedFolderPath);

// 如果找到了文件夹,则在 File Explorer 中聚焦它
if (selectedFolder) {
    if (autoCollapse) {
        app.workspace.getLeavesOfType('file-explorer')[0].view.tree.setCollapseAll(true)
    }
    
    try {
        // 尝试使用内部 API 聚焦文件夹
        const fileExplorerLeaves = app.workspace.getLeavesOfType('file-explorer');
        // 检查是否存在可用叶子节点
        if (fileExplorerLeaves.length === 0) {
            // 若不存在,创建新的文件浏览器标签(参考源码逻辑)
            const leaf = app.workspace.getLeaf('tab');
            await leaf.setViewState({ type: 'file-explorer' });
            fileExplorerLeaves.push(leaf);
        }
        // 获取首个文件浏览器视图实例
        const fileExplorerView = fileExplorerLeaves[0].view;

        // 强制激活文件浏览器标签(确保视图可见)
        app.workspace.revealLeaf(fileExplorerLeaves[0]);

        const targetFile = app.vault.getAbstractFileByPath(selectedFolderPath);
        fileExplorerView.revealInFolder(targetFile);
    } catch (error) {
        // 如果上述方法都失败,显示一个通知
        new Notice( `无法在文件浏览器中聚焦文件夹:${selectedFolderPath},请手动查找` );
    }

    // 显示一个通知,表明操作成功
    new Notice(`已选择文件夹: ${selectedFolderPath}`);
} else {
    new Notice(`未找到文件夹: ${selectedFolderPath}`);
}
%>

也可以给它注册个快捷键,用起来方便点。

脚本下载:TP脚本:搜索文件夹

相关帖子:
如何搜索文件夹的名称 - 疑问解答 - Obsidian 中文论坛

注:
这个脚本的想法和实现基于 @熊猫别熬夜 熊猫佬的 FolderNotes 定位脚本:
如何搜索文件夹的名称 - #6,来自 熊猫别熬夜

1 个赞

如何使用?放进Templater之后 下一步 :pray:

官方文档:Introduction - Templater
中文文档: Templater插件简介和基础语法 | obsidian文档咖啡豆版

简而言之,用你的 Templater 输入框运行这个模板:

也可以在 TP 插件的设置里,给这个模板注册成快捷键。

谢谢 之前不能行是因为我没在笔记里面。 好像必须是在笔记中才能生效 。随便选其中一个都可以生效。
image

嗯,Templater 插件只能在笔记里使用。

想要全局用的话可以改用 QuickAdd 插件,让 AI 改一下 JS 脚本内容……不过那个插件弄起来会稍微麻烦点x