Home Backend Development Python Tutorial Python explains the os module and shutil module in detail

Python explains the os module and shutil module in detail

Mar 03, 2021 am 11:01 AM
os module python

Python explains the os module and shutil module in detail

Article directory

  • File processing
    • Get system type
    • Get the system environment
    • Execute system commands
    • Operation directories and files
  • Advanced processing of files and directories
    • Copy files
    • Move files
    • Read compressed and archive compressed files
    • Unzip files
  • Summary

(Related free learning recommendations: python video tutorial)

os module and shutil module are Python processing files / directory's primary mode. The os module provides a convenient way to use operating system-related functions, and the shutil module is an advanced file/directory operation tool.

File processing

os The module provides some convenient functions to use operating system resources, such as reading files in the resource directory files, view all contents of files under a certain path on the command line, etc.

Get the system type


When developing code compatibility to adapt to different operating systems, it can be easily solved by judging the operating system type.

import osimport sysprint(os.name)  # 返回nt代表Windows,posix代表Linuxprint(sys.platform)  # 更详细信息
Copy after login

Python explains the os module and shutil module in detail

Get the system environment


When setting environment variables, the module environ is often called Module. os.environ returns system environment variables in the form of a dictionary. To obtain specific attribute values, you can use the index or the method getenv():

import osprint(os.environ)print(os.environ['PATH'])print(os.getenv('PATH'))
Copy after login

Python explains the os module and shutil module in detail

Execute system commands


Use the os modulesystem()method to execute shell commands, normal execution will return 0. The usage format is os.system("bash command").

When writing in non-console mode, system() will only call the system command but not execute it. The execution result can be returned through the popen() function The file object is read and obtained.

import os
os.system('ping www.baidu.com')os.popen('ping www.baidu.com').read()
Copy after login

Python explains the os module and shutil module in detail

Operation directories and files


One of the most common functions of Python development when using the os module to operate directories and files one.

##os.chdir('target path')Change the current script directoryos.listdir(path)List all files in the directoryos.mkdir(path)Create a single directory##os.makedirs(path)os.rmdir(path)os.removedirs( path)##os.rename("File or directory name", "Target name")Rename the directory or FileGet the absolute pathDecompose the path into (folder, file name)If the last character of the path string is \, then only the file The folder part has a value; If the path string contains \ and is no longer the last, then the folder and file names all have values. Combining pathsos.path.dirname(path)Get the folder part in pathGet the file name in pathos.path.exists(path)Judge whether the file or folder existsDetermine whether the path is a fileDetermine whether the path is a directoryGet file or folder size##os.path.getctime(path)os.path.getatime(path)os.pathsep()Path separatoros.linesep()Newline symbol

插播反爬信息 )博主CSDN地址:https://wzlodq.blog.csdn.net/

文件和目录高级处理

相比os模块,shutil模块用于文件和目录的高级处理,提供了支持文件赋值、移动、删除、压缩和解压等功能。

复制文件


shutil模块的主要作用是赋值文件,大概有以下七种实现:

  1. shutil.copyfileobj(file1,file2)覆盖复制
    将file1的内容覆盖file2,file1、file2表示打开的文件对象。

  2. shutil.copyfile(file1,file2)覆盖复制
    也是覆盖,但是无须打开文件,直接用文件名进行覆盖(其源码还是调用的copyfileobj)。

  3. shutil.copymode(file1,file2)权限复制
    仅复制文件权限,不更改文件内容、组和用户,无返回对象。

  4. shutil.copystart(file1,file2)状态复制
    复制文件的所有状态信息,包括权限、组、用户和时间等,无返回对象。

  5. shutil.copy(file1,file2)内容和权限复制
    复制文件的内容和权限,相当于先执行了copyfile再执行了copysmode。

  6. shutil.copy2(file1,file2)内容和权限复制
    复制文件的内容及所有状态信息,相当于先执行了copyfile再执行了copystart。

  7. shutil.copytree()递归复制
    递归地复制文件内容及状态信息

移动文件


使用函数shutil.move()函数可以递归地移动文件或重命名,并返回目标,若目标是现有目录则src再当前目录移动;若目标已经存在且不是目录,则可能会被覆盖。
Python explains the os module and shutil module in detail
Python explains the os module and shutil module in detail

读取压缩及归档压缩文件


使用函数shutil.make_archive()创建归档文件,并返回归档后的名称。
语法如下:
shutil.make_archive(base_name,format[,root_dir[,base_dir[,verbose[,dry_run[,owner[,group[,logger]]]]]]])

  • base_name为需要创建的文件名,包括路径
  • format表示压缩格式,可选zip、tar或bztar等
  • root_dir为归档的目录
import shutil
path_1 = r'D:\PycharmProjects\Hello'path_2 = r'D:\PycharmProjects\Hello\shutil-test'new_path = shutil.make_archive(path_2,'zip',path_1)print(new_path)
Copy after login

Python explains the os module and shutil module in detail

解压文件


使用函数shutil.unpack_archive(filename[,extract_dir[,format]])分析拆档。

  • filename是归档的完整路径
  • extract_dir是解压归档的目标目录名称
  • format是解压文件的格式
import shutilimport os
shutil.unpack_archive('D:\PycharmProjects\Hello\shutil-test.zip','D:\\testdir')print(os.listdir('D:\\testdir'))
Copy after login

Python explains the os module and shutil module in detail

小结


需要注意的是不同的操作系统中,路径分隔符不一样,在文件处理时需要考虑。也可以使用os.sep()来替代文件分隔符,因为操作系统而造成的程序异常。此外处理文件时往往需要注意文件权限,还有注意文件和文件夹的区别,使用递归等。

Python系列博客持续更新中

大量免费学习推荐,敬请访问python教程(视频)

Method Description Example
os.getcwd() Get the current directory path Python explains the os module and shutil module in detail
Python explains the os module and shutil module in detail
Python explains the os module and shutil module in detail
Python explains the os module and shutil module in detail
Create a multi-level directory
Delete a single-level empty directory
Delete multi-level directories
Python explains the os module and shutil module in detail##os.path.abspath()
Python explains the os module and shutil module in detailos.path.split(path)
If there is no \ in the path string, only the file name part has a value;


##os.path.join(path1,path2)Python explains the os module and shutil module in detail
os.path.basename( path)Python explains the os module and shutil module in detail
os.path.isfile(path)Python explains the os module and shutil module in detail
os.path.isdir(path)Python explains the os module and shutil module in detail
os.path.getsize(path)Python explains the os module and shutil module in detail
Python explains the os module and shutil module in detailGet the file or folder creation time
Python explains the os module and shutil module in detailGet the file or Folder last access time
##os.path.getmtime(path) Get the last modification time of a file or folderPython explains the os module and shutil module in detail
os.sep() Path separatorPython explains the os module and shutil module in detail
os.extsep() Separator between file name and suffixPython explains the os module and shutil module in detail

The above is the detailed content of Python explains the os module and shutil module in detail. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is the vscode extension malicious? Is the vscode extension malicious? Apr 15, 2025 pm 07:57 PM

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

How to run programs in terminal vscode How to run programs in terminal vscode Apr 15, 2025 pm 06:42 PM

In VS Code, you can run the program in the terminal through the following steps: Prepare the code and open the integrated terminal to ensure that the code directory is consistent with the terminal working directory. Select the run command according to the programming language (such as Python's python your_file_name.py) to check whether it runs successfully and resolve errors. Use the debugger to improve debugging efficiency.

Can vs code run in Windows 8 Can vs code run in Windows 8 Apr 15, 2025 pm 07:24 PM

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

Can visual studio code be used in python Can visual studio code be used in python Apr 15, 2025 pm 08:18 PM

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Can vscode run ipynb Can vscode run ipynb Apr 15, 2025 pm 07:30 PM

The key to running Jupyter Notebook in VS Code is to ensure that the Python environment is properly configured, understand that the code execution order is consistent with the cell order, and be aware of large files or external libraries that may affect performance. The code completion and debugging functions provided by VS Code can greatly improve coding efficiency and reduce errors.

See all articles