We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 46b8ba8 commit afcf8caCopy full SHA for afcf8ca
mfs/dir.go
@@ -5,6 +5,7 @@ import (
5
"fmt"
6
"os"
7
"path"
8
+ "sort"
9
"sync"
10
"time"
11
@@ -195,6 +196,7 @@ func (d *Directory) ListNames() []string {
195
196
for n, _ := range names {
197
out = append(out, n)
198
}
199
+ sort.Strings(out)
200
201
return out
202
0 commit comments