doufang2228 2019-01-11 02:31
浏览 261
已采纳

如何在Windows / Mac / Linux中创建隐藏文件?

I build an console application, need create some hidden files. As well I know filename start with dot will hidden in Linux and mac, but windows?

Set file attributes?

Is there a way to create hidden files and directories in both Windows / Linux / Mac?

  • 写回答

2条回答 默认 最新

  • douchunji1885 2019-01-11 02:48
    关注

    Windows:

    SetFileAttributesW function

    Sets the attributes for a file or directory.

    FILE_ATTRIBUTE_HIDDEN 2 (0x2)

    The file or directory is hidden. It is not included in an ordinary directory listing.


    Go:

    Package syscall

    func SetFileAttributes

    func SetFileAttributes(name *uint16, attrs uint32) (err error)
    

    Convert from a Go UTF-8 encoded string (string) to a Windows UTF-16 encoded string pointer (*uint16).

    Package syscall

    func UTF16PtrFromString

    func UTF16PtrFromString(s string) (*uint16, error)
    

    UTF16PtrFromString returns pointer to the UTF-16 encoding of the UTF-8 string s, with a terminating NUL added. If s contains a NUL byte at any location, it returns (nil, EINVAL).


    Use OS Build Contraints.


    For example,

    hide/attrib.go:

    package main
    
    import (
        "fmt"
        "io/ioutil"
        "os"
    )
    
    func main() {
        filename := `test.hidden.file`
        os.Remove(filename)
        os.Remove("." + filename)
        err := ioutil.WriteFile(filename, []byte(filename), 0666)
        if err != nil {
            fmt.Fprintln(os.Stderr, err)
            return
        }
        err = HideFile(filename)
        if err != nil {
            fmt.Fprintln(os.Stderr, err)
            return
        }
        fmt.Println("hidden:", filename)
    }
    

    hide/hide.go:

    // +build !windows
    
    package main
    
    import (
        "os"
        "path/filepath"
        "strings"
    )
    
    func HideFile(filename string) error {
        if !strings.HasPrefix(filepath.Base(filename), ".") {
            err := os.Rename(filename, "."+filename)
            if err != nil {
                return err
            }
        }
        return nil
    }
    

    hide/hide_windows.go:

    // +build windows
    
    package main
    
    import (
        "syscall"
    )
    
    func HideFile(filename string) error {
        filenameW, err := syscall.UTF16PtrFromString(filename)
        if err != nil {
            return err
        }
        err = syscall.SetFileAttributes(filenameW, syscall.FILE_ATTRIBUTE_HIDDEN)
        if err != nil {
            return err
        }
        return nil
    }
    

    Output (Linux):

    $ tree hide
    hide
    ├── attrib.go
    ├── hide.go
    └── hide_windows.go
    $
    
    $ go build && ./hide
    hidden: test.hidden.file
    $ ls -a .test.hidden.file
    .test.hidden.file
    $ 
    

    Output (Windows):

    >go build && hide
    hidden: test.hidden.file
    >attrib test.hidden.file
    A   H        \test.hidden.file
    >
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵