如何使用 DOS 在硬盘驱动器中搜索目录名

发布于 2024-08-23 01:11:57 字数 153 浏览 2 评论 0原文

有没有一种方法可以使用 DOS 命令在计算机的 C: 上查找文件,而无需将 CD 复制到 C: 驱动器的根目录?我只想使用 DIR 和 FINDSTR 命令来完成此操作。

最终,我的目标是搜索文件,然后将父目录名称存储在 ENV 变量中,而不更改目录,并且希望不创建临时文件。

Is there a way to find a file on the C: of a computer , using a DOS command, without having to CD to the root of the C: drive? I would like to do it using the DIR and the FINDSTR command only.

Ultimately, my goal is to search for a file and then store the parent directory name in a ENV variable without changing directories and hopefully without creating a temp file.

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

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

发布评论

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

评论(3

我们只是彼此的过ke 2024-08-30 01:11:58

这会以可用的形式获取完整的文件名和目录。

dir C:\FILENAME.EXT /s /b

This gets the complete file name with directory in a useable form.

dir C:\FILENAME.EXT /s /b
萌吟 2024-08-30 01:11:58

c:> findstr /s /i *.ext
REM 在驱动器 c 中找到:每个名为 *.ext 的文件包含(不区分大小写)

c:> findstr /s /i *.ext
REM finds in drive c: every file called *.ext containing (case insensitive)

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