本文整理汇总了Golang中syscall.SetFileAttributes函数的典型用法代码示例。如果您正苦于以下问题:Golang SetFileAttributes函数的具体用法?Golang SetFileAttributes怎么用?Golang SetFileAttributes使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了SetFileAttributes函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: SetFileAttributes
func SetFileAttributes(path string, attr uint32) error {
cpath, cpathErr := syscall.UTF16PtrFromString(path)
if cpathErr != nil {
return cpathErr
}
return syscall.SetFileAttributes(cpath, attr)
}
示例2: Show
func (t tempNamer) Show(path string) error {
p, err := syscall.UTF16PtrFromString(path)
if err != nil {
return err
}
attrs, err := syscall.GetFileAttributes(p)
if err != nil {
return err
}
attrs &^= syscall.FILE_ATTRIBUTE_HIDDEN
return syscall.SetFileAttributes(p, attrs)
}
示例3: HideFile
func HideFile(path string) error {
p, err := syscall.UTF16PtrFromString(path)
if err != nil {
return err
}
attrs, err := syscall.GetFileAttributes(p)
if err != nil {
return err
}
attrs |= syscall.FILE_ATTRIBUTE_HIDDEN
return syscall.SetFileAttributes(p, attrs)
}
示例4: makeDirectory
func (dp DiskPersistor) makeDirectory() error {
dir := filepath.Dir(dp.filePath)
err := os.MkdirAll(dir, dirPermissions)
if err != nil {
return err
}
p, err := syscall.UTF16PtrFromString(dir)
if err != nil {
return err
}
attrs, err := syscall.GetFileAttributes(p)
if err != nil {
return err
}
return syscall.SetFileAttributes(p, attrs|syscall.FILE_ATTRIBUTE_HIDDEN)
}
示例5: Remove
// Remove removes the named file or directory.
// If there is an error, it will be of type *PathError.
func Remove(name string) error {
p, e := syscall.UTF16PtrFromString(fixLongPath(name))
if e != nil {
return &PathError{"remove", name, e}
}
// Go file interface forces us to know whether
// name is a file or directory. Try both.
e = syscall.DeleteFile(p)
if e == nil {
return nil
}
e1 := syscall.RemoveDirectory(p)
if e1 == nil {
return nil
}
// Both failed: figure out which error to return.
if e1 != e {
a, e2 := syscall.GetFileAttributes(p)
if e2 != nil {
e = e2
} else {
if a&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {
e = e1
} else if a&syscall.FILE_ATTRIBUTE_READONLY != 0 {
if e1 = syscall.SetFileAttributes(p, a&^syscall.FILE_ATTRIBUTE_READONLY); e1 == nil {
if e = syscall.DeleteFile(p); e == nil {
return nil
}
}
}
}
}
return &PathError{"remove", name, e}
}
示例6: hideFile
func hideFile(path string) {
cpath, cpathErr := syscall.UTF16PtrFromString(path)
if cpathErr != nil {
}
syscall.SetFileAttributes(cpath, syscall.FILE_ATTRIBUTE_HIDDEN)
}