pyfilesystem 一个简单试用
以前简单介绍过关于pyfilesystem 支持通用的文件系统访问,同时还提供了不少内部实现,可以快速使用,以下是一个关于
UserDataFS的简单试用
参考代码
- app.py
from fs.appfs import UserDataFS
user_fs = UserDataFS('my_app')
if not user_fs.exists('data'):
user_fs.makedir('data')
file_path = 'data/my_file.txt'
with user_fs.open(file_path, 'w') as file:
file.write('Hello, UserDataFS!')
with user_fs.open(file_path, 'r') as file:
content = file.read()
print(content)
- 基于协议格式的
import fs
myfs = fs.open_fs("userdata://my_app:dalong")
file_path = "data/my_file.txt"
with myfs.open(file_path, "r") as file:
content = file.read()
print(content)
- 效果
以上会在系统的用户目录中创建数据,对于软件配置还是比较有用的
说明
以上只是一个简单使用说明,pyfilesystem 提供的通用文件api 还是比较方便的,对于项目中还是值得尝试的,对于数据科学的还是推荐基于fsspec
参考资料
https://docs.pyfilesystem.org/en/latest/reference/appfs.html
https://github.com/fsspec/filesystem_spec