github.com/sandwich-go/boost@v1.3.29/xos/README.md (about)

     1  # xos
     2  
     3  系统跨平台辅助函数
     4  
     5  - 支持文件、目录拷贝
     6  - 支持目录创建删除遍历等操作
     7  - 支持判断目录、文件是否存在
     8  - 支持文件内容获取、写入
     9  - 支持文件隐藏、取消隐藏
    10  
    11  # 例子
    12  ```go
    13  var file, dir = "a.go", "b"
    14  fmt.Printf("file: %s, exists? %v\n", file, ExistsFile(file))
    15  fmt.Printf("dir: %s, exists? %v\n", dir, ExistsDir(dir))
    16  ```
    17  Output:
    18  ```text
    19  file: a.go, exists? false
    20  dir: b, exists? false
    21  ```