Unix ls -l 实现 - 按名称排序?
我正在为 Unix 实现 mylsl.c (相当于“ls -l”)方法。除了当前目录的内容以随机顺序显示之外,一切都已设置完毕。
那么问题是如何按文件名对内容进行排序?
I'm implementing mylsl.c (which is equivalent to "ls -l") method for Unix. Everything is set pretty much, except the contents of the current directory is being shown in a random order.
So the question is how could I sort the contents by filename?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此问题的一般解决方案是:
操作系统不提供按排序顺序列出它们的方法。
The general solution to this problem is:
The OS does not provide a way to list them in sorted order for you.