将目录树文件​​导出到文件中

发布于 2024-10-03 18:20:51 字数 42 浏览 2 评论 0原文

我想将一个目录的所有文件名导出到一个文件中。有什么想法如何实现这个吗?

I want to export all the filenames of a directory into a file.Is there any idea on how to implement this?

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

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

发布评论

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

评论(1

等你爱我 2024-10-10 18:20:51

在 Linux 中,您可以执行此操作 find /path/to/dir -maxdepth 1 -type f >文件名.txt。没有更多的内容可以继续,我真的不能告诉你更多。

您在什么操作系统上执行此操作?您需要在某些程序中还是从命令行执行此操作?文本文件有某种格式吗?这些是您需要包含在问题中以获得更好答案的内容。

In linux you can do this as find /path/to/dir -maxdepth 1 -type f > filenames.txt. Without much more to go on, I can't really tell you much else.

What Operating System are you doing this on? Do you need to do it in some program or from the command line? Is there some format to the text file? These are things you need to include in the question to get better answers.

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