博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DirectInfo.GetFiles 排序
阅读量:5790 次
发布时间:2019-06-18

本文共 517 字,大约阅读时间需要 1 分钟。

hot3.png

The order in which this function returns the file names is dependent on the file system type. With NTFS and CDFS file systems, the names are returned in alphabetical order. With FAT file systems, the names are returned in the order the files were written to the disk, which may or may not be in alphabetical order. 

 

DirectoryInfo di = new DirectoryInfo(@"d:/test/");

var files = di.GetFiles().OrderBy(f => f.Name);

 

var files = di.GetFiles().OrderBy(f => f.LastWriteTime);

 

转载于:https://my.oschina.net/fangwei/blog/717250

你可能感兴趣的文章
JProfiler学习笔记
查看>>
Loadrunner脚本编程(4)-数据类型操作和字符串操作
查看>>
arpg网页游戏之地图(二)
查看>>
SQL SERVER 2008取出XML数据
查看>>
STL 算法
查看>>
分享:Backbone.js 样例站点与入门指南
查看>>
图的基本算法
查看>>
《架构之美》摘录三
查看>>
myeclipse6.5上基于JAX-WS开发Webservice(中文示例)
查看>>
HTML基础(一)
查看>>
谈谈冒烟测试
查看>>
boost.circular_buffer简介
查看>>
Database Appliance并非Mini版的Exadata-还原真实的Oracle Unbreakable Database Appliance
查看>>
CORTEX-M3 异常/中断控制(使能和除能)
查看>>
网页图片缩放(js)
查看>>
没有设计模式画小人,有趣画板
查看>>
简易高负载进程记录脚本
查看>>
在VMware上安装CentOS-6.5 minimal - 安装VMware Tools
查看>>
使用 Xtrabackup 在线对MySQL做主从复制
查看>>
linux sort/uniq 使用
查看>>