Bläddra i källkod

ordered file list

Daniel Balk 2 år sedan
förälder
incheckning
35e1f99277
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      Moonlight/App/Helpers/Files/FtpFileAccess.cs

+ 1 - 1
Moonlight/App/Helpers/Files/FtpFileAccess.cs

@@ -33,7 +33,7 @@ public class FtpFileAccess : FileAccess
         
         var x = new List<FileData>();
         
-        foreach (FtpListItem item in await Client.GetListing(CurrentPath))
+        foreach (FtpListItem item in (await Client.GetListing(CurrentPath)).OrderBy(x => x.Type + " " + x.Name))
         {
             long size = 0;