mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-14 12:48:44 +00:00
22 lines
408 B
Go
22 lines
408 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"os"
|
|
|
|
"github.com/vbatts/go-mtree/xattr"
|
|
)
|
|
|
|
func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
|
|
buf, err := base64.StdEncoding.DecodeString(kv.Value())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := xattr.Set(path, kv.Keyword().Suffix(), buf); err != nil {
|
|
return nil, err
|
|
}
|
|
return os.Lstat(path)
|
|
}
|