| commit | 060805c9517bd033db3145ab9e2af0d4dbeb31e9 | [log] [tgz] |
|---|---|---|
| author | Kuba Podgórski <kuba--@users.noreply.github.com> | Sun Apr 10 01:48:55 2022 +0200 |
| committer | GitHub <noreply@github.com> | Sun Apr 10 01:48:55 2022 +0200 |
| tree | 05e18e9bcad1e8644a047ef281c32e80e8ab7729 | |
| parent | c7171d85fb9cd01fa5745e3cfda1d97bb3bf97d8 [diff] |
Upgrade x/sys (#65)
Extended attribute support for Go (linux + darwin + freebsd + netbsd + solaris).
“Extended attributes are name:value pairs associated permanently with files and directories, similar to the environment strings associated with a process. An attribute may be defined or undefined. If it is defined, its value may be empty or non-empty.” See more...
SetWithFlags allows to additionally pass system flags to be forwarded to the underlying calls. FreeBSD and NetBSD do not support this and the parameter will be ignored.
The L variants of all functions (LGet/LSet/...) are identical to Get/Set/... except that they do not reference a symlink that appears at the end of a path. See GoDoc for details.
const path = "/tmp/myfile" const prefix = "user." if err := xattr.Set(path, prefix+"test", []byte("test-attr-value")); err != nil { log.Fatal(err) } var list []string if list, err = xattr.List(path); err != nil { log.Fatal(err) } var data []byte if data, err = xattr.Get(path, prefix+"test"); err != nil { log.Fatal(err) } if err = xattr.Remove(path, prefix+"test"); err != nil { log.Fatal(err) } // One can also specify the flags parameter to be passed to the OS. if err := xattr.SetWithFlags(path, prefix+"test", []byte("test-attr-value"), xattr.XATTR_CREATE); err != nil { log.Fatal(err) }