将目录树文件导出到文件中
我想将一个目录的所有文件名导出到一个文件中。有什么想法如何实现这个吗?
I want to export all the filenames of a directory into a file.Is there any idea on how to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.