deatil da47e5c5b8
Some checks failed
Tests / test (1.20) (push) Has been cancelled
Tests / test (1.21) (push) Has been cancelled
Tests / test (1.22) (push) Has been cancelled
Tests / test (1.23) (push) Has been cancelled
优化
2024-12-23 13:32:53 +08:00
2024-12-10 17:14:51 +08:00
2024-12-23 13:32:53 +08:00
2023-01-08 19:03:55 +08:00
2024-12-10 13:56:46 +08:00
2024-12-10 13:56:46 +08:00
2021-09-30 23:55:29 +08:00
2022-02-15 23:15:33 +08:00
2024-12-17 22:59:01 +08:00

文件管理器

项目介绍

  • go 版本实现的文件管理器

适配器

  • local: 本地存储

下载安装

go get -u github.com/deatil/go-filesystem

示例

import (
    "fmt"

    "github.com/deatil/go-filesystem/filesystem"
    local_adapter "github.com/deatil/go-filesystem/filesystem/adapter/local"
)

func main() {
    // 根目录
    root := "/storage"
    adapter := local_adapter.New(root)

    // 磁盘
    fs := filesystem.New(adapter)

    // 写入数据
    path := "/path.txt"
    contents := []byte("testdata")

    ok, err := fs.Write(path, contents)
    if err != nil {
        fmt.Println(err.Error())
    }
}

常用方法

// 写入
Write(path, contents []byte) (bool, error)

// 写入数据流
WriteStream(path string, resource io.Reader) (bool, error)

// 添加数据
Put(path, contents []byte) (bool, error)

// 添加数据流
PutStream(path string, resource io.Reader) (bool, error)

// 读取后删除
ReadAndDelete(path string) (any, error)

// 更新
Update(path, contents []byte) (bool, error)

// 读取
Read(path string) ([]byte, error)

// 重命名
Rename(path, newpath string) (bool, error)

// 复制
Copy(path, newpath string) (bool, error)

// 删除
Delete(path string) (bool, error)

// 删除文件夹
DeleteDir(dirname string) (bool, error)

// 创建文件夹
CreateDir(dirname string) (bool, error)

// 列出内容
ListContents(dirname string) ([]map[string]any, error)

开源协议

  • go-filesystem 遵循 Apache2 开源协议发布,在保留本软件版权的情况下提供个人及商业免费使用。

版权

Description
Languages
Go 100%