Maison  >  Article  >  développement back-end  >  Comment utiliser la bibliothèque pathlib du module de système de fichiers Python

Comment utiliser la bibliothèque pathlib du module de système de fichiers Python

WBOY
WBOYavant
2023-05-13 23:49:041941parcourir

1. Définition officielle de la bibliothèque pathlib

pathlib est une bibliothèque intégrée de Python La définition donnée par la documentation Python est celle des chemins du système de fichiers orientés objet. pathlib fournit des classes représentant les chemins du système de fichiers, avec une sémantique applicable aux différents systèmes d'exploitation.

Les classes de chemins sont divisées entre des chemins purs, qui fournissent des opérations de calcul pures sans E/S, et des chemins concrets, qui héritent de chemins purs mais fournissent également des opérations d'E/S.

2. Astuces Pathlib

1. Utilisation de base

  • Path.iterdir() # Parcourez les sous-répertoires ou les fichiers du répertoire

  • Path.is_dir() # Déterminez s'il s'agit d'un répertoire.

  • Path.glob() # Filtrer le répertoire (retour au générateur)

  • Path.resolve() # Renvoie le chemin absolu

  • Path.exists() # Déterminer si le chemin existe

  • Path.open() # Ouvrir un fichier (supporte avec)

  • unlink() # Supprimer un fichier ou un répertoire (le répertoire n'est pas vide et déclenche une exception)

2 . Attributs de base

  • Path.

    parts # Le chemin divisé est similaire à os.path.split(), mais renvoie un tuple

  • Path.

    drive # Renvoie le nom du lecteur

  • Path.

    root # Renvoie le répertoire racine du chemin

  • Path.

    anchor # Détermine automatiquement s'il faut revenir au lecteur ou à la racine

  • Path.

    parents # Renvoie une liste de tous les répertoires parents

3. Changez le chemin

  • Path.

    with_name () # Changez le nom du chemin, changez le nom du chemin du dernier niveau

  • Path.

    with_suffix() # Changez le suffixe du chemin

4 , rejoignez le chemin

  • Path.

    joinpath() # Rejoignez le chemin

  • Path.

    relative_to() # Calculer le chemin relatif

5, tester le chemin

  • Path.

    correspondre () # Teste si le chemin correspond au modèle

  • Path.

    is_dir() # Est-ce un fichier

  • Path.

    is_absolute() # Est-ce un chemin absolu ? .is_reserved

    () # Est-ce un chemin réservé ? Existe-t-il vraiment
  • 6 Autres méthodes

  • Path.

    cwd() # Renvoie l'objet chemin du répertoire actuel

Path. .

home

() # Renvoie l'objet du chemin d'accueil de l'utilisateur actuel
  • Path.stat

    () # Renvoie les informations sur le chemin, identiques à os.stat()
  • Path.chmod

    () # Change autorisations de chemin, similaires à os.chmod()
  • Path.expanduser

    () # Développer~Retourner l'objet de chemin complet
  • Path.mkdir

    () # Créer un répertoire
  • Path.rename

    () # Renommer path
  • Path.rglob

    () # Parcourir récursivement les fichiers dans tous les sous-répertoires
  • 3. La différence entre os et pathlib.Path

    Par rapport à la méthode path du module os, l'opération Path du module pathlib de la bibliothèque standard Python3 sera plus simple à utiliser sur les chemins.
  • 1. Obtenez le chemin du fichier actuel

    Lorsque vous utilisez le module os, vous pouvez directement obtenir le chemin du fichier actuel via la méthode getcwd()

    Dans Pycharm, vous pouvez utiliser os .path.dirname( __file__) Obtenez le chemin du fichier actuel, car Python ne fournit pas le concept de __file__, qui est fourni par Pycharm :
  • import os
    
    print(os.getcwd())  # C:\Users\bobin.yang\PycharmProjects\untitled
    print(os.path.dirname(__file__))  # C:/Users/bobin.yang/PycharmProjects/untitled
Dans le module pathlib, vous pouvez utiliser le Path. Méthode cwd() Pour obtenir directement le chemin du fichier actuel, nous pouvons l'essayer :

import pathlib

print(pathlib.Path.cwd())  # C:\Users\bobin.yang\PycharmProjects\untitled

Grâce à Pycharm, nous pouvons utiliser la touche de raccourci ctrl+bouton gauche de la souris et cliquer pour afficher l'introduction détaillée de cette méthode.

Comme vous pouvez le voir sur l'image ci-dessus, la méthode cwd() n'est qu'une encapsulation de la méthode getcwd() dans la bibliothèque os. Cela semble pire, mais. c'est officiel Le lancement de n'est décidément pas une fiction, révélons maintenant ensemble le secret.

2. Obtenez le répertoire upper/upper

getcwd() 方法可以直接获取当前文件路径

在 Pycharm 中,可以使用 os.path.dirname(__file__) 获取当前文件路径,因为 Python 并没有提供 __file__ 这个概念,他是 Pycharm 提供的:

import os

print(os.path.dirname(os.path.dirname(os.getcwd())))  # C:\PycharmProjects

在 pathlib 模块中,通过 Path.cwd() 方法可以直接获取当前文件路径,我们可以动手试一试:

import pathlib

print(pathlib.Path.cwd().parent)   # C:\PycharmProjects

通过 Pycharm 我们可以使用快捷键 ctrl+鼠标左键 点击查看该方法的详细介绍。

从上图中可以看出 cwd() 方法不过是对 os 库中 getcwd() 方法进行了封装,看起来好像更差劲了,但是官方的推出一定不是子虚乌有的,现在让我们一起来揭秘。

2、 获取上层/上层目录

上面那个案例仿佛让 pashlib 库的使用变得更加复杂了,为了揭秘,我们只能一同感受下 pathlib 库的构成,了解 pathlib 库如何带给我们便捷。

在 os 模块中,如果我们要获取某一个文件的父目录,os 模块的写法为:

import os

print(os.path.join(os.path.dirname(os.getcwd()), '路径拼接', '真麻烦'))  # C:\PycharmProjects\路径拼接\真麻烦

在 pathlib 库中,可以通过这样简洁方法实现:

# /Users/mac/test.py
import os

paths = ('路径拼接', '真麻烦')
print(pathlib.Path.cwd().parent.joinpath(*paths))  # C:\PycharmProjects\路径拼接\真麻烦

并且,如果你需要找他爷爷,是不是再来一个 .parent 就行了。相比较 os 模块的 os.path.dirname()Le cas ci-dessus semble rendre l'utilisation de la bibliothèque pashlib plus compliquée. Afin de révéler le secret, nous ne pouvons que ressentir ensemble la composition de la bibliothèque pathlib et comprendre comment fonctionne pathlib. la bibliothèque nous apporte du confort.

Dans le module os, si nous voulons obtenir le répertoire parent d'un certain fichier, le module os s'écrit :

import pathlib

print(pathlib.PurePath(__file__).match('*.py'))  # True

Dans la bibliothèque pathlib, cela peut être réalisé de cette manière simple :

import pathlib

os_path = os.path.dirname(__file__)
print(os_path)  # C:/PycharmProjects/untitled

pure_path = pathlib.PurePath(__file__)
print(pure_path)  # C:\PycharmProjects\untitled\run.py
print(type(pure_path))  # <class &#39;pathlib.PureWindowsPath&#39;>


print(pathlib.PurePath(__file__).match(&#39;*.py&#39;))  # True

Et, si vous devez retrouver son grand-père, devrions-nous simplement ajouter un autre .parent ? Comparé au os.path.dirname() du module os, est-ce trop pratique ?

🎜3. Épissage de chemin🎜🎜Si vous souhaitez épisser des chemins dans son répertoire parent, vous devrez peut-être écrire une si longue chaîne de code via le module os : 🎜rrreee🎜Lorsque vous utilisez pathlib, découvrons sa commodité ensemble. sur! 🎜
# /Users/mac/test.py
import os

paths = (&#39;路径拼接&#39;, &#39;真麻烦&#39;)
print(pathlib.Path.cwd().parent.joinpath(*paths))  # C:\PycharmProjects\路径拼接\真麻烦

通过 pathlib 库拼接路径,你可以很方便的调节他在他祖辈的位置,妙哉。

4、 其他封装

pathlib 封装了很多的 os.path 中的方法,如下所示:

  • os.path.expanduser() --> pathlib.Path.home()

  • os.path.expanduser() --> pathlib.Path.expanduser()

  • os.stat() --> pathlib.Path.stat()

  • os.chmod() --> pathlib.Path.chmod()

四、pathlib.PurePath的使用

上一节的操作大部分都是通过 pathlib 库中的 Path 实现,其实他还有一个更加高大上的模块,也就是我们这一节的主角:pathlib.PurePath

PurePath 是一个纯路径对象,纯路径对象提供了实际上不访问文件系统的路径处理操作。

有三种方法可以访问这些类,我们也称之为 flavor 。

1、 PurePath.match

下面让我们来实现一个神奇的功能,判断当前的路径下是否有符合'*.py'规则的文件。

import pathlib

print(pathlib.PurePath(__file__).match(&#39;*.py&#39;))  # True

输出为什么会是 True 呢?因为当前文件夹下不就有一个 test.py 吗?

2、 PurePath的子类:PurePosixPath(非Windows系统)、PureWindowsPath

看见 pathlib.PurePath 后面跟着 match,那是不是能说明他是个对象,而不是一个单纯的路径字符串,因此我们可以试着打印 pathlib.PurePath 看一看。

import pathlib

os_path = os.path.dirname(__file__)
print(os_path)  # C:/PycharmProjects/untitled

pure_path = pathlib.PurePath(__file__)
print(pure_path)  # C:\PycharmProjects\untitled\run.py
print(type(pure_path))  # <class &#39;pathlib.PureWindowsPath&#39;>


print(pathlib.PurePath(__file__).match(&#39;*.py&#39;))  # True

通过打印 os.path 获取当前路径的结果,得到一个路径字符串;而通过 pathlib.PurePath 则获得了一个 PurePosixPath 对象,并且由此得到的路径包括了当前文件 run.py。

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer