file
A pluggable, mockable file system abstraction for Dart. Supports local file system access, as well as in-memory file systems, record-replay file systems, and chroot file systems.
7.0.1
Dart ^3.0.0
47 个版本
安装
dart pub add file
flutter pub add file
dependencies:
file: ^7.0.1
版本列表
7.0.1
2024-10-08
7.0.0
2023-05-19
6.1.4
2022-08-18
6.1.3
2022-08-17
6.1.2
2021-06-15
6.1.1
2021-05-17
6.1.0
2021-02-18
6.0.1
2021-02-17
6.0.0
2021-02-03
6.0.0-nullsafety.4
2020-11-04
6.0.0-nullsafety.3
2020-10-22
6.0.0-nullsafety.2
2020-09-22
6.0.0-nullsafety.1
2020-08-11
5.2.1
2020-06-23
5.2.0
2020-06-15
5.1.0
2019-10-11
5.0.10
2019-08-31
5.0.9
2019-08-31
5.0.8
2019-05-20
5.0.7
2018-12-07
5.0.6
2018-08-30
5.0.5
2018-08-29
5.0.4
2018-08-14
5.0.3
2018-08-13
5.0.2
2018-08-13
5.0.1
2018-05-21
5.0.0
2018-04-10
5.0.8+1
2019-06-25
4.0.1
2018-04-10
4.0.0
2018-04-06
3.0.0
2018-03-20
2.3.7
2018-03-01
2.3.6
2018-02-12
2.3.5
2017-11-22
2.3.4
2017-07-13
2.3.3
2017-07-11
2.3.2
2017-03-27
2.3.1
2017-03-15
2.3.0
2017-02-27
2.2.0
2017-02-22
2.1.0
2017-02-21
2.0.1
2017-02-12
2.0.0
2017-02-12
1.0.1
2017-01-07
1.0.0
2017-01-06
0.1.0
2016-02-20
0.0.1-dev+1
2015-06-06
相关教程
Linux 内核模块编写
Linux 内核模块动态加载到内核不需要重新编译。module_init 和 module_exit 入口。Makefile 编译 Kbuild。本文写一个 Hello World 内核模块。
Wireshark 解密 HTTPS
Wireshark 解密 HTTPS是开发中常用的技术工具或方法。本文从实际应用出发介绍核心概念和操作步骤帮助读者快速上手并掌握关键技巧。
Helmfile K8s 多环境部署
Helmfile 声明式管理 Helm releases 跨环境共享 values。selector 选择发布子集。适合多环境部署。本文用 Helmfile 部署微服务到不同命名空间。
MySQL 使用索引排序 ORDER BY 不走 filesort
ORDER BY 和 WHERE 共用同一个索引或者 ORDER BY 字段有独立索引时无需额外排序。Extra 里没有 Using filesort 说明走索引排序。本文解释索引排序的条件。
Dockerfile 最佳实践 多阶段构建减少镜像体积
Dockerfile 写得不好镜像体积很容易膨胀到 1GB 以上。多阶段构建让最终镜像只包含运行所需文件不包含编译工具链。本文用 Go 应用的 Dockerfile 展示从 800MB 降到 20MB 的过程。