Socket
Socket
Sign inDemoInstall

fileblock

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fileblock

simplify file processing


Maintainers
1

Readme

File Block

Programe

简化文件处理 - simplify file processing

Installing from pip

pip 安装

pip install fileblock

清华源安装

pip install fileblock -i https://pypi.tuna.tsinghua.edu.cn/simple

How to use

import fileblock as fb
from fileblock import Block, Directory

Block

Block()
file_block = Block("./") # 创建一个Block
参数类型返回值描述
namestringNone创建 block 的逻辑位置
Tips:
  @path 不一定是真实存在的文件或者文件夹路径
block.sub_block()
参数类型返回值描述
pathstringBlock相对于 block 的相对路径
block.append()
参数类型描述
namestring相对于 block 的相对路径
typebtype.FILE / btype.DIR需要添加的节点类型

返回新生成节点的Block对象

Tips:
    当type == FILE时,若name形如x1/x2, 则会新建x1文件夹,返回的是x2的Block对象,而不是x1
block.join_path()
参数类型描述
pathstring需要拼接的文件/文件夹路径

返回拼接后的路径

block.remove()

说明:

如果该 block 对象是真实存在的文件/文件夹, 则从磁盘上永久删除该文件/文件夹

block.moveTo()
参数类型描述
targetBlock一个类型为Dir的Block对象

如果block存在,则会把其中的文件与文件夹移动到target对应的文件夹内

block.copyTo()
参数类型描述
targetBlock一个类型为Dir的Block对象

把 Block 及其 Children 都拷贝如 target 中

block.cut()
参数类型描述
ratesint/float需要划分的比重

🌰举个例子:

文件夹里如果有n个文件,想要划分成7:3,那参数就是7, 3,也就是block.cut(7, 3)

如果想要分成1:2:3,那就block.cut(1, 2, 3)

返回值时一个列表,其中的元素是划分好的Children类型

block.get_file_contents()

如果block时文件,则返回该文件的bytes内容

block.leaves

Block文件树的叶子节点构成的Children集合

block.isfile

当block存在,且为文件时等于True

block.isdir

当block存在,且为文件夹时为True

block.exists

当block存在时为True

block.children

返回block对象包含的子文件与子文件夹构成的Children集合

block.btype

返回该Block对象的类型 FILE | DIR | None

Directory

directory.map()
directory.to_json()
directory.copy()
directory.shuffle()

返回打乱顺序的Directory,不改变本身内容

directory.unfold()
directory.append()
directory.extend()
directory.remove()
directory.pop()
directory.extension_filter()
super_dir_name
directory.abspaths

返回所有Block的绝对路径

License

Apache 2.0

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc