2024-06-18 18:21:03 -04:00
|
|
|
// Package files finds and displays files on disk
|
|
|
|
package files
|
|
|
|
|
2024-07-15 18:07:39 -04:00
|
|
|
import (
|
|
|
|
"cmp"
|
2024-07-16 00:05:21 -04:00
|
|
|
"io/fs"
|
2024-07-21 23:33:25 -04:00
|
|
|
"path/filepath"
|
2024-07-15 19:10:04 -04:00
|
|
|
"strings"
|
2024-07-15 18:07:39 -04:00
|
|
|
"time"
|
|
|
|
)
|
2024-07-03 18:05:17 -04:00
|
|
|
|
|
|
|
type File interface {
|
|
|
|
Name() string
|
|
|
|
Path() string
|
|
|
|
Date() time.Time
|
|
|
|
Filesize() int64
|
|
|
|
IsDir() bool
|
2024-07-16 00:05:21 -04:00
|
|
|
Mode() fs.FileMode
|
2024-07-15 18:32:33 -04:00
|
|
|
String() string
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Files []File
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortByModified(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
if a.Date().Before(b.Date()) {
|
2024-07-03 18:05:17 -04:00
|
|
|
return 1
|
2024-07-15 18:07:39 -04:00
|
|
|
} else if a.Date().After(b.Date()) {
|
2024-07-03 18:05:17 -04:00
|
|
|
return -1
|
2024-06-18 18:21:03 -04:00
|
|
|
} else {
|
2024-07-03 18:05:17 -04:00
|
|
|
return 0
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortByModifiedReverse(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
if a.Date().After(b.Date()) {
|
2024-07-03 18:05:17 -04:00
|
|
|
return 1
|
2024-07-15 18:07:39 -04:00
|
|
|
} else if a.Date().Before(b.Date()) {
|
2024-07-03 18:05:17 -04:00
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
2024-06-19 23:25:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortBySize(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
return cmp.Compare(b.Filesize(), a.Filesize())
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortBySizeReverse(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
return cmp.Compare(a.Filesize(), b.Filesize())
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortByName(a, b File) int {
|
2024-07-16 14:11:12 -04:00
|
|
|
an := strings.ToLower(a.Name())
|
|
|
|
bn := strings.ToLower(b.Name())
|
|
|
|
return cmp.Compare(an, bn)
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortByNameReverse(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
return cmp.Compare(b.Name(), a.Name())
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
2024-07-03 18:05:17 -04:00
|
|
|
func SortByPath(a, b File) int {
|
2024-07-15 18:07:39 -04:00
|
|
|
return cmp.Compare(a.Path(), b.Path())
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortByPathReverse(a, b File) int {
|
|
|
|
return cmp.Compare(b.Path(), a.Path())
|
|
|
|
}
|
|
|
|
|
2024-07-15 19:10:04 -04:00
|
|
|
func SortByExtension(a, b File) int {
|
2024-07-21 23:33:25 -04:00
|
|
|
aext := filepath.Ext(a.Name())
|
|
|
|
bext := filepath.Ext(b.Name())
|
2024-07-15 19:10:04 -04:00
|
|
|
return cmp.Compare(aext, bext)
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortByExtensionReverse(a, b File) int {
|
2024-07-21 23:33:25 -04:00
|
|
|
aext := filepath.Ext(a.Name())
|
|
|
|
bext := filepath.Ext(b.Name())
|
2024-07-15 19:10:04 -04:00
|
|
|
return cmp.Compare(bext, aext)
|
|
|
|
}
|
|
|
|
|
2024-07-15 18:07:39 -04:00
|
|
|
func SortDirectoriesFirst(a, b File) int {
|
|
|
|
if !a.IsDir() && b.IsDir() {
|
2024-06-18 18:21:03 -04:00
|
|
|
return 1
|
2024-07-15 18:07:39 -04:00
|
|
|
} else if a.IsDir() && !b.IsDir() {
|
2024-06-18 18:21:03 -04:00
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-15 18:07:39 -04:00
|
|
|
func SortDirectoriesLast(a, b File) int {
|
|
|
|
if a.IsDir() && !b.IsDir() {
|
2024-06-18 18:21:03 -04:00
|
|
|
return 1
|
2024-07-15 18:07:39 -04:00
|
|
|
} else if !a.IsDir() && b.IsDir() {
|
2024-06-18 18:21:03 -04:00
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|