mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 00:39:17 +08:00
28 lines
418 B
Go
28 lines
418 B
Go
|
package files
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"os/user"
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
func IsSymlink(mode os.FileMode) bool {
|
||
|
return mode&os.ModeSymlink != 0
|
||
|
}
|
||
|
|
||
|
func GetUsername(uid uint32) string {
|
||
|
usr, err := user.LookupId(strconv.Itoa(int(uid)))
|
||
|
if err != nil {
|
||
|
return ""
|
||
|
}
|
||
|
return usr.Username
|
||
|
}
|
||
|
|
||
|
func GetGroup(gid uint32) string {
|
||
|
usr, err := user.LookupGroupId(strconv.Itoa(int(gid)))
|
||
|
if err != nil {
|
||
|
return ""
|
||
|
}
|
||
|
return usr.Name
|
||
|
}
|