列出 DOS 和 Unix 中的文件夹和子文件夹?

发布于 2024-09-27 13:41:47 字数 198 浏览 3 评论 0原文

我必须列出 DOS 和 Unix 中给定目录的文件夹和子文件夹。我知道我可以使用 DIR 命令来实现此目的,如下所示:dir directory /ad /s,但分配告诉我必须使用 find 来实现。它适用于 dir,但我不知道如何使用 find 来实现它。我也必须在 UNIX 中制作它,所以如果您有任何提示或其他信息,请告诉我。

谢谢。

I have to list folders and sub-folders from a given directory in DOS and Unix. I know i cand make this with DIR command, as follows: dir directory /ad /s, but the assignment tells me that I have to make it with find. It works with dir, but i have no idea how to make it with find. And I have to make it in UNIX too, so if you have some hints or something, please let me know.

Thanks.

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

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

发布评论

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

评论(1

输什么也不输骨气 2024-10-04 13:41:47

Windows 原生 find 命令用于查找文件或标准输入中的字符串,而不是列出文件名。下载 findutils Windows 版,然后你就可以使用 find 相同的功能就像你在 Unix

WindowsS 中使用的那样:

C:\test> gnu_find.exe c:\path

Unix:

find /path 

Windows native find command is for finding strings in files or stdin, not for listing file names. download findutils for windows, then you can use find the same as what you used in Unix

WindowS:

C:\test> gnu_find.exe c:\path

Unix:

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