go 版本文件管理器
Go to file
2023-02-27 12:56:20 +08:00
filesystem 更新 2023-02-27 12:56:20 +08:00
.gitattributes 优化 2023-01-08 19:03:55 +08:00
.gitignore 优化更新 2022-01-29 15:09:59 +08:00
go.mod 优化更新 2022-03-26 12:06:06 +08:00
LICENSE 文件系统 2021-09-30 23:55:29 +08:00
logo.png 常规更新 2022-02-15 23:15:33 +08:00
README.md 更新文档 2022-10-14 19:08:28 +08:00

文件管理器

项目介绍

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

适配器

  • local: 本地存储

下载安装

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

示例

import (
    "github.com/deatil/go-filesystem/filesystem"
    localAdapter "github.com/deatil/go-filesystem/filesystem/adapter/local"
)

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

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

    // 使用
    fs.Write(path string, contents string) (bool, error)
}

常用方法

// 写入
fs.Write(path, contents string) (bool, error)

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

// 添加数据
fs.Put(path, contents string) (bool, error)

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

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

// 更新
fs.Update(path, contents string) (bool, error)

// 读取
fs.Read(path string) (string, error)

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

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

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

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

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

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

开源协议

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

版权