心灯 发表于 2007-1-19 16:31

请教 列出文件时对文件进行排序?

想使用dir命令,看到这么一句:
dir lists the files in the current working directory. Results are not sorted, but presented in the order returned by the operating system.

不知道如何在用dir或类似命令时,实现按照文件大小,文件生成日期,文件修改日期等方式进行升或降序 列出?

尽管不是很需要,但是既然我想到这个问题,不知道如何解决, 还是作为一个问题提出来吧.... 请大家指点讨论。:@)

eight 发表于 2007-1-19 16:47

原帖由 心灯 于 2007-1-19 16:31 发表
想使用dir命令,看到这么一句:
dir lists the files in the current working directory. Results are not sorted, but presented in the order returned by the operating system.

不知道如何在用dir或类似 ...

按照日期顺序排:
system('dir /O:D')

按照大小顺序排:

system('dir /O:S')

心灯 发表于 2007-1-19 18:32

赞,不错...

attacker 发表于 2007-1-20 08:46

那对一距阵内数据按照大小排序呢?比如一个单列距阵

心灯 发表于 2007-1-20 15:46

help sort
页: [1]
查看完整版本: 请教 列出文件时对文件进行排序?