Sort stash by modified time
This commit is contained in:
parent
9509610841
commit
45d74b4d9b
1 changed files with 6 additions and 0 deletions
6
main.go
6
main.go
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
log "github.com/Sirupsen/logrus"
|
log "github.com/Sirupsen/logrus"
|
||||||
|
@ -125,6 +126,11 @@ func NewApp() *gin.Engine {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sort.Slice(files, func(i, j int) bool {
|
||||||
|
return files[i].ModTime().Unix() > files[j].ModTime().Unix()
|
||||||
|
})
|
||||||
|
|
||||||
var stash []string
|
var stash []string
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
if file.IsDir() {
|
if file.IsDir() {
|
||||||
|
|
Loading…
Reference in a new issue