skip to main
|
skip to sidebar
Rudy's blog Dotnet
14 mars 2007
Sorted files by LastWriteTime
private static List
SortFilesByLastWriteTime(string path, string filter)
{
FileInfo[] fi = new DirectoryInfo(path).GetFiles(filter);
List
fis = new List
();
fis.AddRange(fi);
fis.Sort(new Comparison
(
delegate(FileInfo f1, FileInfo f2)
{
return f1.LastWriteTime.CompareTo(f2.LastWriteTime);
}));
return fis;
}
Aucun commentaire:
Enregistrer un commentaire
Article plus récent
Accueil
Inscription à :
Publier les commentaires (Atom)
Qui êtes-vous ?
Rudy et Julie
Bienvenue sur notre blog consacré à notre construction chez TPalm
Afficher mon profil complet
Archives du blog
►
2008
(2)
►
mai
(2)
▼
2007
(11)
►
novembre
(2)
►
octobre
(3)
►
avril
(2)
▼
mars
(4)
Remove accent of a stringéèàçùö =>eeacuoprivate st...
Remove accents
FxCopCmd.exe Error code 65
Sorted files by LastWriteTime
Libellés
Ajax
(1)
Application
(1)
Code Analysis
(2)
DotNet 2.0
(1)
Hashtable
(1)
Aucun commentaire:
Enregistrer un commentaire