当前位置: 首页 > news >正文

企业网站建设一般要素包含哪些巴音郭楞库尔勒网站建设

企业网站建设一般要素包含哪些,巴音郭楞库尔勒网站建设,wordpress制作简易前台会员中心,廊坊关键词优化报价目录 基础使用 纯路径 通用性质 运算符 访问个别部分 方法和特征属性 具体路径 方法 对应的 os 模块的工具 3.4 新版功能. 源代码 Lib/pathlib.py 该模块提供表示文件系统路径的类#xff0c;其语义适用于不同的操作系统。路径类被分为提供纯计算操作而没有 I/O 的 …目录 基础使用 纯路径 通用性质 运算符 访问个别部分 方法和特征属性 具体路径 方法 对应的 os 模块的工具 3.4 新版功能. 源代码 Lib/pathlib.py 该模块提供表示文件系统路径的类其语义适用于不同的操作系统。路径类被分为提供纯计算操作而没有 I/O 的 纯路径以及从纯路径继承而来但提供 I/O 操作的 具体路径。 如果以前从未用过此模块或不确定哪个类适合完成任务那要用的可能就是 Path。它在运行代码的平台上实例化为 具体路径。 在一些用例中纯路径很有用例如 如果你想要在 Unix 设备上操作 Windows 路径或者相反。你不应在 Unix 上实例化一个 WindowsPath但是你可以实例化 PureWindowsPath。 你只想操作路径但不想实际访问操作系统。在这种情况下实例化一个纯路径是有用的因为它们没有任何访问操作系统的操作。 参见 PEP 428pathlib 模块 -- 面向对象的文件系统路径。 参见 对于底层的路径字符串操作你也可以使用 os.path 模块。 基础使用 导入主类: from pathlib import Path列出子目录: p Path(.)[x for x in p.iterdir() if x.is_dir()] [PosixPath(.hg), PosixPath(docs), PosixPath(dist),PosixPath(__pycache__), PosixPath(build)]列出当前目录树下的所有 Python 源代码文件: list(p.glob(**/*.py)) [PosixPath(test_pathlib.py), PosixPath(setup.py),PosixPath(pathlib.py), PosixPath(docs/conf.py),PosixPath(build/lib/pathlib.py)]在目录树中移动: p Path(/etc)q p / init.d / rebootq PosixPath(/etc/init.d/reboot)q.resolve() PosixPath(/etc/rc.d/init.d/halt)查询路径的属性: q.exists() Trueq.is_dir() False打开一个文件: with q.open() as f: f.readline() ... #!/bin/bash\n纯路径 纯路径对象提供了不实际访问文件系统的路径处理操作。有三种方式来访问这些类也是不同的风格 class pathlib.PurePath(*pathsegments) 一个通用的类代表当前系统的路径风格实例化为 PurePosixPath 或者 PureWindowsPath: PurePath(setup.py) # Running on a Unix machine PurePosixPath(setup.py)pathsegments 的每个元素既可以是代表一个路径段的字符串也可以是实现了 os.PathLike 接口的对象其中 __fspath__() 方法返回一个字符串例如另一个路径对象: PurePath(foo, some/path, bar) PurePosixPath(foo/some/path/bar)PurePath(Path(foo), Path(bar)) PurePosixPath(foo/bar)当 pathsegments 为空的时候假定为当前目录: PurePath() PurePosixPath(.)如果某个段为绝对路径则其前面的所有段都会被忽略 (类似 os.path.join()): PurePath(/etc, /usr, lib64) PurePosixPath(/usr/lib64)PureWindowsPath(c:/Windows, d:bar) PureWindowsPath(d:bar)在 Windows 上当遇到带根符号的路径段 (如 r\foo) 时驱动器将不会被重置: PureWindowsPath(c:/Windows, /Program Files) PureWindowsPath(c:/Program Files)假斜杠和单个点号会被消除但双点号 (..) 和打头的双斜杠 (//) 不会因为这会出于各种原因改变路径的实际含义 (例如符号链接、UNC 路径等): PurePath(foo//bar) PurePosixPath(foo/bar)PurePath(//foo/bar) PurePosixPath(//foo/bar)PurePath(foo/./bar) PurePosixPath(foo/bar)PurePath(foo/../bar) PurePosixPath(foo/../bar)一个很 naïve 的做法是让 PurePosixPath(foo/../bar) 等同于 PurePosixPath(bar)如果 foo 是一个指向其他目录的符号链接那么这个做法就将出错 纯路径对象实现了 os.PathLike 接口允许它们在任何接受此接口的地方使用。 在 3.6 版更改: 添加了 os.PathLike 接口支持。 class pathlib.PurePosixPath(*pathsegments) 一个 PurePath 的子类路径风格不同于 Windows 文件系统: PurePosixPath(/etc) PurePosixPath(/etc)pathsegments 参数的指定和 PurePath 相同。 class pathlib.PureWindowsPath(*pathsegments) PurePath 的一个子类此路径风格代表 Windows 文件系统路径包括 UNC paths: PureWindowsPath(c:/Program Files/) PureWindowsPath(c:/Program Files)PureWindowsPath(//server/share/file) PureWindowsPath(//server/share/file)pathsegments 参数的指定和 PurePath 相同。 无论你正运行什么系统你都可以实例化这些类因为它们提供的操作不做任何系统调用。 通用性质 路径是不可变并且 hashable。 相同风格的路径可以排序和比较。 这此特性会尊重对应风格的大小写转换语义。: PurePosixPath(foo) PurePosixPath(FOO) FalsePureWindowsPath(foo) PureWindowsPath(FOO) TruePureWindowsPath(FOO) in { PureWindowsPath(foo) } TruePureWindowsPath(C:) PureWindowsPath(d:) True不同风格的路径比较得到不等的结果并且无法被排序: PureWindowsPath(foo) PurePosixPath(foo) FalsePureWindowsPath(foo) PurePosixPath(foo) Traceback (most recent call last):File stdin, line 1, in module TypeError: not supported between instances of PureWindowsPath and PurePosixPath运算符 斜杠操作符可以帮助创建子路径如 os.path.join()。 如果参数为一个绝对路径则之前的路径会被忽略。 在 Windows 上当参数为一个带根符号的相对路径 (如 r\foo) 时驱动器将不会被重置: p PurePath(/etc)p PurePosixPath(/etc)p / init.d / apache2 PurePosixPath(/etc/init.d/apache2)q PurePath(bin)/usr / q PurePosixPath(/usr/bin)p / /an_absolute_path PurePosixPath(/an_absolute_path)PureWindowsPath(c:/Windows, /Program Files) PureWindowsPath(c:/Program Files)文件对象可用于任何接受 os.PathLike 接口实现的地方。 import osp PurePath(/etc)os.fspath(p) /etc路径的字符串表示法为它自己原始的文件系统路径以原生形式例如在 Windows 下使用反斜杠。你可以传递给任何需要字符串形式路径的函数。 p PurePath(/etc)str(p) /etcp PureWindowsPath(c:/Program Files)str(p) c:\\Program Files类似地在路径上调用 bytes 将原始文件系统路径作为字节对象给出就像被 os.fsencode() 编码一样: bytes(p) b/etc备注 只推荐在 Unix 下调用 bytes。在 Windows unicode 形式是文件系统路径的规范表示法。 访问个别部分 为了访问路径独立的部分 组件使用以下特征属性 PurePath.parts 一个元组可以访问路径的多个组件: p PurePath(/usr/bin/python3)p.parts (/, usr, bin, python3) p PureWindowsPath(c:/Program Files/PSF)p.parts (c:\\, Program Files, PSF)注意盘符和本地根目录是如何重组的 方法和特征属性 纯路径提供以下方法和特征属性 PurePath.drive 一个表示驱动器盘符或命名的字符串如果存在: PureWindowsPath(c:/Program Files/).drive c:PureWindowsPath(/Program Files/).drivePurePosixPath(/etc).driveUNC 分享也被认作驱动器: PureWindowsPath(//host/share/foo.txt).drive \\\\host\\sharePurePath.root 一个表示本地或全局根的字符串如果存在: PureWindowsPath(c:/Program Files/).root \\PureWindowsPath(c:Program Files/).rootPurePosixPath(/etc).root /UNC 分享一样拥有根: PureWindowsPath(//host/share).root \\如果路径以超过两个连续斜框打头PurePosixPath 会合并它们: PurePosixPath(//etc).root //PurePosixPath(///etc).root /PurePosixPath(etc).root /备注 此行为符合 The Open Group Base Specifications Issue 6, paragraph 4.11 Pathname Resolution: 以连续两个斜杠打头的路径名可能会以具体实现所定义的方式被解读但是两个以上的前缀斜杠则应当被当作一个斜杠来处理。 PurePath.anchor 驱动器和根的联合: PureWindowsPath(c:/Program Files/).anchor c:\\PureWindowsPath(c:Program Files/).anchor c:PurePosixPath(/etc).anchor /PureWindowsPath(//host/share).anchor \\\\host\\share\\PurePath.parents 提供访问此路径的逻辑祖先的不可变序列: p PureWindowsPath(c:/foo/bar/setup.py)p.parents[0] PureWindowsPath(c:/foo/bar)p.parents[1] PureWindowsPath(c:/foo)p.parents[2] PureWindowsPath(c:/)在 3.10 版更改: parents 序列现在支持 切片 和负的索引值。 PurePath.parent 此路径的逻辑父路径: p PurePosixPath(/a/b/c/d)p.parent PurePosixPath(/a/b/c)你不能超过一个 anchor 或空路径: p PurePosixPath(/)p.parent PurePosixPath(/)p PurePosixPath(.)p.parent PurePosixPath(.)备注 这是一个单纯的词法操作因此有以下行为: p PurePosixPath(foo/..)p.parent PurePosixPath(foo)如果你想要向上遍历任意文件系统路径建议首先调用 Path.resolve() 以便解析符号链接并消除 .. 部分。 PurePath.name 一个表示最后路径组件的字符串排除了驱动器与根目录如果存在的话: PurePosixPath(my/library/setup.py).name setup.pyUNC 驱动器名不被考虑: PureWindowsPath(//some/share/setup.py).name setup.pyPureWindowsPath(//some/share).namePurePath.suffix 最后一个组件的文件扩展名如果存在: PurePosixPath(my/library/setup.py).suffix .pyPurePosixPath(my/library.tar.gz).suffix .gzPurePosixPath(my/library).suffixPurePath.suffixes 路径的文件扩展名列表: PurePosixPath(my/library.tar.gar).suffixes [.tar, .gar]PurePosixPath(my/library.tar.gz).suffixes [.tar, .gz]PurePosixPath(my/library).suffixes []PurePath.stem 最后一个路径组件除去后缀: PurePosixPath(my/library.tar.gz).stem library.tarPurePosixPath(my/library.tar).stem libraryPurePosixPath(my/library).stem libraryPurePath.as_posix() 返回使用正斜杠/的路径字符串: p PureWindowsPath(c:\\windows)str(p) c:\\windowsp.as_posix() c:/windowsPurePath.as_uri() 将路径表示为 file URL。如果并非绝对路径抛出 ValueError。 p PurePosixPath(/etc/passwd)p.as_uri() file:///etc/passwdp PureWindowsPath(c:/Windows)p.as_uri() file:///c:/WindowsPurePath.is_absolute() 返回此路径是否为绝对路径。如果路径同时拥有驱动器符与根路径如果风格允许则将被认作绝对路径。 PurePosixPath(/a/b).is_absolute() TruePurePosixPath(a/b).is_absolute() False PureWindowsPath(c:/a/b).is_absolute() TruePureWindowsPath(/a/b).is_absolute() FalsePureWindowsPath(c:).is_absolute() FalsePureWindowsPath(//some/share).is_absolute() TruePurePath.is_relative_to(other) 返回此路径是否相对于 other 的路径。 p PurePath(/etc/passwd)p.is_relative_to(/etc) Truep.is_relative_to(/usr) False3.9 新版功能. 从 3.12 版起不建议使用将在 3.14 版中移除: 传入附加参数的做法已被弃用如果提供了附加参数它们将与 other 合并。 PurePath.is_reserved() 在 PureWindowsPath如果路径是被 Windows 保留的则返回 True否则 False。在 PurePosixPath总是返回 False。 PureWindowsPath(nul).is_reserved() TruePurePosixPath(nul).is_reserved() False当保留路径上的文件系统被调用则可能出现玄学失败或者意料之外的效应。 PurePath.joinpath(*pathsegments) 调用此方法等同于依次将路径与给定的每个 pathsegments 组合到一起: PurePosixPath(/etc).joinpath(passwd) PurePosixPath(/etc/passwd)PurePosixPath(/etc).joinpath(PurePosixPath(passwd)) PurePosixPath(/etc/passwd)PurePosixPath(/etc).joinpath(init.d, apache2) PurePosixPath(/etc/init.d/apache2)PureWindowsPath(c:).joinpath(/Program Files) PureWindowsPath(c:/Program Files)PurePath.match(pattern, *, case_sensitiveNone) 将此路径与提供的通配符风格的模式匹配。如果匹配成功则返回 True否则返回 False。 如果 pattern 是相对的则路径可以是相对路径或绝对路径并且匹配是从右侧完成的 PurePath(a/b.py).match(*.py) TruePurePath(/a/b/c.py).match(b/*.py) TruePurePath(/a/b/c.py).match(a/*.py) False如果 pattern 是绝对的则路径必须是绝对的并且路径必须完全匹配: PurePath(/a.py).match(/*.py) TruePurePath(a/b.py).match(/*.py) Falsepattern 可以是另一个路径对象这样可以加快多个文件匹配同一模式的速度: pattern PurePath(*.py)PurePath(a/b.py).match(pattern) True与其他方法一样是否大小写敏感遵循平台的默认规则: PurePosixPath(b.py).match(*.PY) FalsePureWindowsPath(b.py).match(*.PY) True将 case_sensitive 设为 True 或 False 来重载此行为。 在 3.12 版更改: 增加了 case_sensitive 形参。 PurePath.relative_to(other, walk_upFalse) 计算此路径相对于 other 所表示路径的版本。 如果不可计算则引发 ValueError: p PurePosixPath(/etc/passwd)p.relative_to(/) PurePosixPath(etc/passwd)p.relative_to(/etc) PurePosixPath(passwd)p.relative_to(/usr) Traceback (most recent call last):File stdin, line 1, in moduleFile pathlib.py, line 941, in relative_toraise ValueError(error_message.format(str(self), str(formatted))) ValueError: /etc/passwd is not in the subpath of /usr OR one path is relative and the other is absolute.当 walk_up 为 False默认值时路径必须以 other 开始。 当参数为 True 时可能会添加 .. 条目以形成相对路径。 在所有其他情况下如引用不同驱动器的路径则会引发 ValueError。: p.relative_to(/usr, walk_upTrue) PurePosixPath(../etc/passwd)p.relative_to(foo, walk_upTrue) Traceback (most recent call last):File stdin, line 1, in moduleFile pathlib.py, line 941, in relative_toraise ValueError(error_message.format(str(self), str(formatted))) ValueError: /etc/passwd is not on the same drive as foo OR one path is relative and the other is absolute.警告 该函数是 PurePath 的一部分并适用于字符串。 它不会检查或访问下层的文件结构体。 这可能会影响 walk_up 选项因为它假定路径中不存在符号链接如果需要处理符号链接请先调用 resolve()。 在 3.12 版更改: 增加了 walk_up 形参数原本的行为与 walk_upFalse 相同。 从 3.12 版起不建议使用将在 3.14 版中移除: 传入附加位置参数的做法已被弃用如果提供的话它们将与 other 合并。 PurePath.with_name(name) 返回一个新的路径并修改 name。如果原本路径没有 nameValueError 被抛出: p PureWindowsPath(c:/Downloads/pathlib.tar.gz)p.with_name(setup.py) PureWindowsPath(c:/Downloads/setup.py)p PureWindowsPath(c:/)p.with_name(setup.py) Traceback (most recent call last):File stdin, line 1, in moduleFile /home/antoine/cpython/default/Lib/pathlib.py, line 751, in with_nameraise ValueError(%r has an empty name % (self,)) ValueError: PureWindowsPath(c:/) has an empty namePurePath.with_stem(stem) 返回一个带有修改后 stem 的新路径。 如果原路径没有名称则会引发 ValueError: p PureWindowsPath(c:/Downloads/draft.txt)p.with_stem(final) PureWindowsPath(c:/Downloads/final.txt)p PureWindowsPath(c:/Downloads/pathlib.tar.gz)p.with_stem(lib) PureWindowsPath(c:/Downloads/lib.gz)p PureWindowsPath(c:/)p.with_stem() Traceback (most recent call last):File stdin, line 1, in moduleFile /home/antoine/cpython/default/Lib/pathlib.py, line 861, in with_stemreturn self.with_name(stem self.suffix)File /home/antoine/cpython/default/Lib/pathlib.py, line 851, in with_nameraise ValueError(%r has an empty name % (self,)) ValueError: PureWindowsPath(c:/) has an empty name3.9 新版功能. PurePath.with_suffix(suffix) 返回一个新的路径并修改 suffix。如果原本的路径没有后缀新的 suffix 则被追加以代替。如果 suffix 是空字符串则原本的后缀被移除: p PureWindowsPath(c:/Downloads/pathlib.tar.gz)p.with_suffix(.bz2) PureWindowsPath(c:/Downloads/pathlib.tar.bz2)p PureWindowsPath(README)p.with_suffix(.txt) PureWindowsPath(README.txt)p PureWindowsPath(README.txt)p.with_suffix() PureWindowsPath(README)PurePath.with_segments(*pathsegments) 通过组合给定的 pathsegments 创建一个相同类型的新路径对象。 每当创建派生路径如从 parent 和 relative_to() 创建时都会调用此方法。 子类可以覆盖此方法以便向派生路径传递信息例如: from pathlib import PurePosixPathclass MyPath(PurePosixPath):def __init__(self, *pathsegments, session_id):super().__init__(*pathsegments)self.session_id session_iddef with_segments(self, *pathsegments):return type(self)(*pathsegments, session_idself.session_id)etc MyPath(/etc, session_id42) hosts etc / hosts print(hosts.session_id) # 423.12 新版功能. 具体路径 具体路径是纯路径的子类。除了后者提供的操作之外它们还提供了对路径对象进行系统调用的方法。有三种方法可以实例化具体路径: class pathlib.Path(*pathsegments) 一个 PurePath 的子类此类以当前系统的路径风格表示路径实例化为 PosixPath 或 WindowsPath: Path(setup.py) PosixPath(setup.py)pathsegments 参数的指定和 PurePath 相同。 class pathlib.PosixPath(*pathsegments) 一个 Path 和 PurePosixPath 的子类此类表示一个非 Windows 文件系统的具体路径: PosixPath(/etc) PosixPath(/etc)pathsegments 参数的指定和 PurePath 相同。 class pathlib.WindowsPath(*pathsegments) Path 和 PureWindowsPath 的子类从类表示一个 Windows 文件系统的具体路径: WindowsPath(c:/Program Files/) WindowsPath(c:/Program Files)pathsegments 参数的指定和 PurePath 相同。 你只能实例化与当前系统风格相同的类允许系统调用作用于不兼容的路径风格可能在应用程序中导致缺陷或失败: import osos.name posixPath(setup.py) PosixPath(setup.py)PosixPath(setup.py) PosixPath(setup.py)WindowsPath(setup.py) Traceback (most recent call last):File stdin, line 1, in moduleFile pathlib.py, line 798, in __new__% (cls.__name__,)) NotImplementedError: cannot instantiate WindowsPath on your system方法 除纯路径方法外实体路径还提供以下方法。 如果系统调用失败例如因为路径不存在这些方法中许多都会引发 OSError。 在 3.8 版更改: 对于包含 OS 层级无法表示字符的路径exists(), is_dir(), is_file(), is_mount(), is_symlink(), is_block_device(), is_char_device(), is_fifo(), is_socket() 现在将返回 False 而不是引发异常。 classmethod Path.cwd() 返回一个新的表示当前目录的路径对象和 os.getcwd() 返回的相同: Path.cwd() PosixPath(/home/antoine/pathlib)classmethod Path.home() 返回一个表示用户家目录的新路径对象与带 ~ 构造的 os.path.expanduser() 所返回的相同。 如果无法解析家目录则会引发 RuntimeError。 Path.home() PosixPath(/home/antoine)3.5 新版功能. Path.stat(*, follow_symlinksTrue) 返回一个 os.stat_result 对象其中包含有关此路径的信息例如 os.stat()。 结果会在每次调用此方法时重新搜索。 此方法通常会跟随符号链接要对 symlink 使用 stat 请添加参数 follow_symlinksFalse或者使用 lstat()。 p Path(setup.py)p.stat().st_size 956p.stat().st_mtime 1327883547.852554在 3.10 版更改: 增加了 follow_symlinks 形参。 Path.chmod(mode, *, follow_symlinksTrue) 改变文件模式和权限和 os.chmod() 一样。 此方法通常会跟随符号链接。 某些 Unix 变种支持改变 symlink 本身的权限在这些平台上你可以添加参数 follow_symlinksFalse或者使用 lchmod()。 p Path(setup.py)p.stat().st_mode 33277p.chmod(0o444)p.stat().st_mode 33060在 3.10 版更改: 增加了 follow_symlinks 形参。 Path.exists(*, follow_symlinksTrue) 如果路径指向现有的文件或目录则返回 True。 此方法通常会跟随符号链接要检查符号链接是否存在请添加参数 follow_symlinksFalse。 Path(.).exists() TruePath(setup.py).exists() TruePath(/etc).exists() TruePath(nonexistentfile).exists() False在 3.12 版更改: 增加了 follow_symlinks 形参。 Path.expanduser() 返回带有扩展 ~ 和 ~user 构造的新路径与 os.path.expanduser() 所返回的相同。 如果无法解析家目录则会引发 RuntimeError。 p PosixPath(~/films/Monty Python)p.expanduser() PosixPath(/home/eric/films/Monty Python)3.5 新版功能. Path.glob(pattern, *, case_sensitiveNone) 解析相对于此路径的通配符 pattern产生所有匹配的文件: sorted(Path(.).glob(*.py)) [PosixPath(pathlib.py), PosixPath(setup.py), PosixPath(test_pathlib.py)]sorted(Path(.).glob(*/*.py)) [PosixPath(docs/conf.py)]pattern 的形式与 fnmatch 的相同还增加了 ** 表示 此目录以及所有子目录递归。 换句话说它启用递归通配: sorted(Path(.).glob(**/*.py)) [PosixPath(build/lib/pathlib.py),PosixPath(docs/conf.py),PosixPath(pathlib.py),PosixPath(setup.py),PosixPath(test_pathlib.py)]在默认情况下或当 case_sensitive 关键字参数被设为 None 时该方法将使用特定平台的大小写规则匹配路径通常在 POSIX 上区分大小写而在 Windows 上不区分大小写。将 case_sensitive 设为 True 或 False 可覆盖此行为。 备注 在一个较大的目录树中使用 ** 模式可能会消耗非常多的时间。 引发一个 审计事件 pathlib.Path.glob 附带参数 self, pattern。 在 3.11 版更改: 如果 pattern 以一个路径名称部分的分隔符结束 (sep 或 altsep) 则只返回目录。 在 3.12 版更改: 增加了 case_sensitive 形参。 Path.group() 返回拥有此文件的用户组。如果文件的 GID 无法在系统数据库中找到将抛出 KeyError 。 Path.is_dir() 如果路径指向一个目录或者一个指向目录的符号链接则返回 True如果指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.is_file() 如果路径指向一个正常的文件或者一个指向正常文件的符号链接则返回 True如果指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.is_junction() 如果路径是指向一个接合点则返回 True如果是其他文件类型则返回 False。 目前只有 Windows 支持接合点。 3.12 新版功能. Path.is_mount() 如果路径是一个 挂载点: 在文件系统中被其他不同文件系统挂载的位置则返回 True。 在 POSIX 上此函数将检查 path 的上一级 path/.. 是否位于和 path 不同的设备中或者 path/.. 和 path 是否指向位于相同设置的相同 i-node --- 这应当能检测所有 Unix 和 POSIX 变种上的挂载点。 在 Windows 上挂载点是被视为驱动器盘符的根目录 (例如 c:\)、UNC 共享目录 (例如 \\server\share) 或已挂载的文件系统目录。 3.7 新版功能. 在 3.12 版更改: 添加了 Windows 支持。 Path.is_symlink() 如果路径指向符号链接则返回 True 否则 False。 如果路径不存在也返回 False其他错误例如权限错误被传播。 Path.is_socket() 如果路径指向一个 Unix socket 文件或者指向 Unix socket 文件的符号链接则返回 True如果指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.is_fifo() 如果路径指向一个先进先出存储或者指向先进先出存储的符号链接则返回 True 指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.is_block_device() 如果文件指向一个块设备或者指向块设备的符号链接则返回 True指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.is_char_device() 如果路径指向一个字符设备或指向字符设备的符号链接则返回 True指向其他类型的文件则返回 False。 当路径不存在或者是一个破损的符号链接时也会返回 False其他错误例如权限错误被传播。 Path.iterdir() 当路径指向一个目录时产生该路径下的对象的路径: p Path(docs)for child in p.iterdir(): child ... PosixPath(docs/conf.py) PosixPath(docs/_templates) PosixPath(docs/make.bat) PosixPath(docs/index.rst) PosixPath(docs/_build) PosixPath(docs/_static) PosixPath(docs/Makefile)子条目会以任意顺序生成并且不包括特殊条目 . 和 ..。 如果迭代器创建之后有文件在目录中被移除或添加是否要包括该文件所对应的路径对象并没有明确规定。 Path.walk(top_downTrue, on_errorNone, follow_symlinksFalse) 通过对目录树自上而下或自下而上的遍历来生成其中的文件名。 对于根位置为 self 的目录树中的每个目录包括 self 但不包括 . 和 ..该方法会产生一个 3 元组 (dirpath, dirnames, filenames)。 dirpath 是指向当前正被遍历到的目录的 Pathdirnames 是由表示 dirpath 中子目录名称的字符串组成的列表 (不包括 . 和 ..)filenames 是由表示 dirpath 中非目录文件名称的字符串组成的列表。 要获取 dirpath 中文件或目录的完整路径 (以 self 开头)可使用 dirpath / name。 这些列表是否排序取决于具体的文件系统。 如果可选参数 top_down 为默认的真值则会在所有子目录的三元组生成之前生成父目录的三元组目录是自上而下遍历的。 如果 top_down 为假值则会在所有子目录的三元组生成之后再生成父目录的三元组目录是是自下而上遍历的。无论 top_down 的值是什么都会在遍历目录及其子目录的三元组之前提取子目录列表。 当 top_down 为真值时调用者可以就地修改 dirnames 列表例如使用 del 或切片赋值而 Path.walk() 将只向名称保留在 dirnames 中的子目录递归。 这可用于减少搜索量或加入特定的访问顺序甚至是在继续 Path.walk() 之前通知 Path.walk() 调用者创建或重命名的目录的相关信息。 当 top_down 为假值时修改 dirnames 不会影响 Path.walk() 的行为因为在 dirnames 被提供给调用者时 dirnames 中的目录已经生成了。 在默认情况下来自 os.scandir() 的错误将被忽略。 如果指定了可选参数 on_error则它应为一个可调用对象调用它需要传入一个参数即 OSError 的实例。 该可调用对象能处理错误以继续执行遍历或是重新引发错误以停止遍历。 请注意可以通过异常对象的 filename 属性来获取文件名。 在默认情况下Path.walk() 不会跟踪符号链接而是将其添加到 filenames 列表中。 将 follow_symlinks*设为真值可解析符号链接并根据它们的目标将其放入*dirnames 和 filenames 中从而在受支持的系统上访问符号链接所指向的目录。 备注 请注意将 follow_symlinks 设为真值会在链接指向自身的父目录时导致无限递归。 Path.walk() 不会跟踪已它访问过的目录。 备注 Path.walk() 会假定在执行过程中它所遍历的目录没有被修改。 例如如果 dirnames 中的某个目录已被替换为符号链接并且 follow_symlinks 为假值则 Path.walk() 仍会尝试进入该目录。 为防止出现这种行为请相应地移除 dirnames 中的目录。 备注 与 os.walk() 不同当 follow_symlinks 为假值时 Path.walk() 会在 filenames 中列出指向目录的符号链接。 这个例子显示每个目录中所有文件使用的总字节数忽略其中的 __pycache__ 目录: from pathlib import Path for root, dirs, files in Path(cpython/Lib/concurrent).walk(on_errorprint):print(root,consumes,sum((root / file).stat().st_size for file in files),bytes in,len(files),non-directory files)if __pycache__ in dirs:dirs.remove(__pycache__)下一个例子是 shutil.rmtree() 的一个简单实现。 由于 rmdir() 不允许在目录为空之前删除该目录因此自下而上地遍历目录树是至关重要的: # Delete everything reachable from the directory top. # CAUTION: This is dangerous! For example, if top Path(/), # it could delete all of your files. for root, dirs, files in top.walk(top_downFalse):for name in files:(root / name).unlink()for name in dirs:(root / name).rmdir()3.12 新版功能. Path.lchmod(mode) 就像 Path.chmod() 但是如果路径指向符号链接则是修改符号链接的模式而不是修改符号链接的目标。 Path.lstat() 就和 Path.stat() 一样但是如果路径指向符号链接则是返回符号链接而不是目标的信息。 Path.mkdir(mode0o777, parentsFalse, exist_okFalse) 新建给定路径的目录。如果给出了 mode 它将与当前进程的 umask 值合并来决定文件模式和访问标志。如果路径已经存在则抛出 FileExistsError。 如果 parents 为真值任何找不到的父目录都会伴随着此路径被创建它们会以默认权限被创建而不考虑 mode 设置模仿 POSIX 的 mkdir -p 命令。 如果 parents 为假值默认则找不到的父级目录会引发 FileNotFoundError。 如果 exist_ok 为 false默认则在目标已存在的情况下抛出 FileExistsError。 如果 exist_ok 为 true 则 FileExistsError 异常将被忽略和 POSIX mkdir -p 命令行为相同但是只有在最后一个路径组件不是现存的非目录文件时才生效。 在 3.5 版更改: exist_ok 形参被加入。 Path.open(moder, buffering- 1, encodingNone, errorsNone, newlineNone) 打开路径指向的文件就像内置的 open() 函数所做的一样: p Path(setup.py)with p.open() as f: ... f.readline() ... #!/usr/bin/env python3\nPath.owner() 返回拥有此文件的用户名。如果文件的 UID 无法在系统数据库中找到则抛出 KeyError。 Path.read_bytes() 以字节对象的形式返回路径指向的文件的二进制内容: p Path(my_binary_file)p.write_bytes(bBinary file contents) 20p.read_bytes() bBinary file contents3.5 新版功能. Path.read_text(encodingNone, errorsNone) 以字符串形式返回路径指向的文件的解码后文本内容。 p Path(my_text_file)p.write_text(Text file contents) 18p.read_text() Text file contents文件先被打开然后关闭。有和 open() 一样的可选形参。 3.5 新版功能. Path.readlink() 返回符号链接所指向的路径即 os.readlink() 的返回值: p Path(mylink)p.symlink_to(setup.py)p.readlink() PosixPath(setup.py)3.9 新版功能. Path.rename(target) 将文件名目录重命名为给定的 target并返回一个新的指向 target 的 Path 实例。 在 Unix 上如果 target 存在且为一个文件如果用户有足够权限则它将被静默地替换。 在 Windows 上如果 target 存在则将会引发 FileExistsError。 target 可以是一个字符串或者另一个路径对象: p Path(foo)p.open(w).write(some text) 9target Path(bar)p.rename(target) PosixPath(bar)target.open().read() some text目标路径可能为绝对或相对路径。 相对路径将被解释为相对于当前工作目录而 不是 相对于 Path 对象的目录。 它根据 os.rename() 实现并给出了同样的保证。 在 3.8 版更改: 添加了返回值返回新的 Path 实例。 Path.replace(target) 将文件或目录重命名为给定的 target并返回一个新的指向 target 的 Path 实例。 如果 target 指向一个现有文件或空目录则它将被无条件地替换。 目标路径可能为绝对或相对路径。 相对路径将被解释为相对于当前工作目录而 不是 相对于 Path 对象的目录。 在 3.8 版更改: 添加了返回值返回新的 Path 实例。 Path.absolute() 改为绝对路径不会执行正规化或解析符号链接。 返回一个新的路径对象: p Path(tests)p PosixPath(tests)p.absolute() PosixPath(/home/antoine/pathlib/tests)Path.resolve(strictFalse) 将路径绝对化解析任何符号链接。返回新的路径对象: p Path()p PosixPath(.)p.resolve() PosixPath(/home/antoine/pathlib).. 组件也将被消除只有这一种方法这么做: p Path(docs/../setup.py)p.resolve() PosixPath(/home/antoine/pathlib/setup.py)如果路径不存在并且 strict 设为 True则抛出 FileNotFoundError。如果 strict 为 False则路径将被尽可能地解析并且任何剩余部分都会被不检查是否存在地追加。如果在解析路径上发生无限循环则抛出 RuntimeError。 在 3.6 版更改: 增加了 strict 参数3.6 之前的行为是默认采用 strict 模式。 Path.rglob(pattern, *, case_sensitiveNone) 递归地对给定的相对 pattern 执行 glob 通配。 这类似于当调用 Path.glob() 时在 pattern 之前加上 **/其中 patterns 与 fnmatch 中的相同: sorted(Path().rglob(*.py)) [PosixPath(build/lib/pathlib.py),PosixPath(docs/conf.py),PosixPath(pathlib.py),PosixPath(setup.py),PosixPath(test_pathlib.py)]在默认情况下或当 case_sensitive 关键字参数被设为 None 时该方法将使用特定平台的大小写规则匹配路径通常在 POSIX 上区分大小写而在 Windows 上不区分大小写。将 case_sensitive 设为 True 或 False 可覆盖此行为。 引发一个 审计事件 pathlib.Path.rglob 附带参数 self, pattern。 在 3.11 版更改: 如果 pattern 以一个路径名称部分的分隔符结束 (sep 或 altsep) 则只返回目录。 在 3.12 版更改: 增加了 case_sensitive 形参。 Path.rmdir() 移除此目录。此目录必须为空的。 Path.samefile(other_path) 返回此目录是否指向与可能是字符串或者另一个路径对象的 other_path 相同的文件。语义类似于 os.path.samefile() 与 os.path.samestat()。 如果两者都以同一原因无法访问则抛出 OSError。 p Path(spam)q Path(eggs)p.samefile(q) Falsep.samefile(spam) True3.5 新版功能. Path.symlink_to(target, target_is_directoryFalse) 将此路径创建为指向 target 的符号链接。在 Windows 下如果链接的目标是一个目录则 target_is_directory 必须为 true 默认为 False。在 POSIX 下 target_is_directory 的值将被忽略。 p Path(mylink)p.symlink_to(setup.py)p.resolve() PosixPath(/home/antoine/pathlib/setup.py)p.stat().st_size 956p.lstat().st_size 8备注 参数的顺序link, target) 和 os.symlink() 是相反的。 Path.hardlink_to(target) 将此路径设为一个指向与 target 相同文件的硬链接。 备注 参数顺序 (link, target) 和 os.link() 是相反的。 3.10 新版功能. Path.touch(mode0o666, exist_okTrue) 将给定的路径创建为文件。如果给出了 mode 它将与当前进程的 umask 值合并以确定文件的模式和访问标志。如果文件已经存在则当 exist_ok 为 true 则函数仍会成功并且将它的修改事件更新为当前事件否则抛出 FileExistsError。 Path.unlink(missing_okFalse) 移除此文件或符号链接。如果路径指向目录则用 Path.rmdir() 代替。 如果 missing_ok 为假值默认则如果路径不存在将会引发 FileNotFoundError。 如果 missing_ok 为真值则 FileNotFoundError 异常将被忽略和 POSIX rm -f 命令的行为相同。 在 3.8 版更改: 增加了 missing_ok 形参。 Path.write_bytes(data) 将文件以二进制模式打开写入 data 并关闭: p Path(my_binary_file)p.write_bytes(bBinary file contents) 20p.read_bytes() bBinary file contents一个同名的现存文件将被覆盖。 3.5 新版功能. Path.write_text(data, encodingNone, errorsNone, newlineNone) 将文件以文本模式打开写入 data 并关闭: p Path(my_text_file)p.write_text(Text file contents) 18p.read_text() Text file contents同名的现有文件会被覆盖。 可选形参的含义与 open() 的相同。 3.5 新版功能. 在 3.10 版更改: 增加了 newline 形参。 对应的 os 模块的工具 以下是一个映射了 os 与 PurePath/Path 对应相同的函数的表。 备注 以下函数/方法对并不全都是等价的。 在它们之中有的虽然具有相互重叠的使用场景但其语义有所不同。 这包括 os.path.abspath() 与 Path.absolute(), os.path.relpath() 与 PurePath.relative_to()。 os 和 os.path pathlib os.path.abspath() Path.absolute() 1 os.path.realpath() Path.resolve() os.chmod() Path.chmod() os.mkdir() Path.mkdir() os.makedirs() Path.mkdir() os.rename() Path.rename() os.replace() Path.replace() os.rmdir() Path.rmdir() os.remove(), os.unlink() Path.unlink() os.getcwd() Path.cwd() os.path.exists() Path.exists() os.path.expanduser() Path.expanduser() 和 Path.home() os.listdir() Path.iterdir() os.walk() Path.walk() os.path.isdir() Path.is_dir() os.path.isfile() Path.is_file() os.path.islink() Path.is_symlink() os.link() Path.hardlink_to() os.symlink() Path.symlink_to() os.readlink() Path.readlink() os.path.relpath() PurePath.relative_to() 2 os.stat() Path.stat(), Path.owner(), Path.group() os.path.isabs() PurePath.is_absolute() os.path.join() PurePath.joinpath() os.path.basename() PurePath.name os.path.dirname() PurePath.parent os.path.samefile() Path.samefile() os.path.splitext() PurePath.stem 和 PurePath.suffix 备注 1 os.path.abspath() 会对结果路径执行正规化当存在符号链接时这可能改变其含义而 Path.absolute() 则不会。 2 PurePath.relative_to() 要求 self 为参数的子路径但 os.path.relpath() 则不要求。
http://www.pierceye.com/news/271474/

相关文章:

  • 域名网站平台qq在线登录
  • 成都做网站建设公司网站建设公司销售技巧
  • 打开网站是iis7三亚最新发布
  • php外贸网站中山网站建设方案报价
  • 好网站建设公司开发方案广告传媒公司加盟
  • 郑州膏药网站建设石家庄seo管理
  • 做国外产品描述的网站营销wordpress
  • 服务器2003怎么做网站枣庄网站建设电话
  • 南京网站建设一条龙汶上网站制作
  • 黑龙江微信网站开发郑州热门网络推广免费咨询
  • 深圳坪山站永久免费linux服务器
  • 东莞网站建议ipv6在家做网站
  • 政务网站源码1688电脑网页版
  • 大连企业网站网站rar文件
  • 揭阳东莞网站建设手机网站分享代码
  • 网站设计风格分析wordpress 用户介绍
  • 中国教育网站官网wordpress 自定义循环
  • 中国婚恋网站排名苏州网站建设设计公司哪家好
  • 微软雅黑做网站是否侵权杭州标志设计公司
  • 个人网站如何制作教程网站通栏广告设计
  • 网站建设与维护要求wordpress 常数函数
  • 网站开发u盘128够吗手机网站开发学习
  • 襄阳营销型网站国内最新保理公司排名
  • 网站开发系统学习网站需要续费吗
  • 问答网站如何优化wordpress简约电影
  • 公司做网站 手机 电脑wordpress图片批量修改
  • 电子商务网站怎么做建筑安全员考试成绩查询官网
  • 定制制作网站价格表网站设计步骤大全
  • 泉州网站建设制作北京企业网络推广方案
  • wordpress网站模板怎么用新闻类网站开发