src.pipe package¶
Submodules¶
src.pipe.file_pipe module¶
-
class
src.pipe.file_pipe.
FilePipe
(file_system_destination, file_system_root_path)[源代码]¶ 基类:
pipe.Pipe
-
get_file_tree
(root_path, file_node)[源代码]¶ 递归函数,遍历该文档目录和子目录下的所有文件,获取其path,作为本地文件下read_file_system的实现方式
- 参数
root_path (String) – 根目录
file_node (FileNode) – 根目录文件节点
-
src.pipe.net_pipe module¶
src.pipe.pipe module¶
-
class
src.pipe.pipe.
Pipe
(file_system_destination, file_system_root_path)[源代码]¶ 基类:
object
管道抽象类
Pipe主要功能在于read & write, 而借助linux的思路,考虑虚拟文件系统的路子,屏蔽不同文件系统来源带来的差异(比如 网络和local的文件存储位置),简单的进行读写操作。
-
abstract
file_system_xml_parse
(xml_file_path, xml_file_name)[源代码]¶ 给定使用xml格式存储的文件树文件的路径和文件名,解析出这个文件树
- 参数
xml_file_path (String) – xml文件的绝对路径
xml_file_name (String) – xml文件的文件名
- 返回
解析出的文件树
- 返回类型
-
abstract