如何让 Windows 资源管理器“浏览到下一个文件夹”? (vbscript/批处理等...)

发布于 2024-07-13 14:44:02 字数 268 浏览 4 评论 0原文

我使用基本的 Windows 资源管理器来浏览大量图像。 我有一组组织良好的文件夹,我不需要/不想要照片管理器的任何额外功能,例如 picasa 等...

唯一的缺点是:我真的希望能够从一个文件夹进行浏览直接进入下一个文件夹,无需单击“后退”并选择下一个文件夹。

所以我的问题是,我怎样才能以最顺利的方式做到这一点?

我猜我可以使用一些脚本的组合,然后使用自动热键将其绑定到快捷键。

非常感谢任何帮助/想法/指示!

谢谢。

I use the basic windows explorer to browse a large collection of images. I have a very well organised group of folders and I don't need/want any of the extra functionality of photo organisers such as picasa etc...

The only drawback is: I'd really like to be able to browse from one folder straight into the next, without having to click back and choosing the next folder.

So my question is, how could I do this in the smoothest way?!

I'm guessing I could use a combination of some script and then use auto hotkey to bind it to a key shortcut.

Any help/ideas/pointers very appreciated!

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

年华零落成诗 2024-07-20 14:44:02

为此,您根本不需要编程。 我假设您使用 Windows 图像查看器浏览图像。
要在整个文件夹树中按顺序浏览图像,请按照下列步骤操作:
1) 在 Windows 资源管理器中打开树的根文件夹
2) 单击放大镜工具栏按钮
3)点击左侧面板中的“搜索”按钮
此时,您将获得您打开的根文件夹下的所有文件夹和子文件夹中的所有文件和文件夹的完整列表。
4) 现在只需单击其中一张图像即可使用 Windows 图像查看器将其打开
要转到文件夹树中的下一个/上一个图像,只需单击窗口底部的下一个/上一个图像按钮。

You dont need programming at all for this. I'm assuming you browse your images with the Windows Image Viewer.
To browse images sequentially in an entire folder tree, follow these steps:
1) Open the tree's root folder in Windows explorer
2) Click on the magnifying glass toolbar button
3) Click on the "search" button in the left panel
At this point you will have a full list of all files and folders in all folders and subfolders under the root folder you opened.
4) Now just click on one of the images to open it with the Windows Image Viewer
To go to the next/previous image in the folder tree just click on the next/previous image button at the bottom of the window.

病毒体 2024-07-20 14:44:02

现在我正在使用自动热键和一个小脚本。

它并不完美,因为资源管理器必须向上跳转一个文件夹,然后再向下跳转,但目前它可以工作。

if WinActive("ahk_class CabinetWClass") or WinActive("ahk_class" . ExplorerWClass)
 ^Up::
 SendEvent {Alt Down}{Left}{Alt Up}
 SendEvent {Up}
 Sleep 300
 SendEvent {Return}

 ^Down::
 SendEvent {Alt Down}{Left}{Alt Up}
 SendEvent {Down}
 Sleep 300
 SendEvent {Return}

Well for now I'm using autohotkey and a little script.

It's not perfect as explorer has to jump up a folder and then down again but it works for now.

if WinActive("ahk_class CabinetWClass") or WinActive("ahk_class" . ExplorerWClass)
 ^Up::
 SendEvent {Alt Down}{Left}{Alt Up}
 SendEvent {Up}
 Sleep 300
 SendEvent {Return}

 ^Down::
 SendEvent {Alt Down}{Left}{Alt Up}
 SendEvent {Down}
 Sleep 300
 SendEvent {Return}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文