search
HomeBackend DevelopmentPython TutorialPython explains the os module and shutil module in detail

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)  # 更详细信息

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'))

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()

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)

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'))

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
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
Python vs. C  : Learning Curves and Ease of UsePython vs. C : Learning Curves and Ease of UseApr 19, 2025 am 12:20 AM

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

Python vs. C  : Memory Management and ControlPython vs. C : Memory Management and ControlApr 19, 2025 am 12:17 AM

Python and C have significant differences in memory management and control. 1. Python uses automatic memory management, based on reference counting and garbage collection, simplifying the work of programmers. 2.C requires manual management of memory, providing more control but increasing complexity and error risk. Which language to choose should be based on project requirements and team technology stack.

Python for Scientific Computing: A Detailed LookPython for Scientific Computing: A Detailed LookApr 19, 2025 am 12:15 AM

Python's applications in scientific computing include data analysis, machine learning, numerical simulation and visualization. 1.Numpy provides efficient multi-dimensional arrays and mathematical functions. 2. SciPy extends Numpy functionality and provides optimization and linear algebra tools. 3. Pandas is used for data processing and analysis. 4.Matplotlib is used to generate various graphs and visual results.

Python and C  : Finding the Right ToolPython and C : Finding the Right ToolApr 19, 2025 am 12:04 AM

Whether to choose Python or C depends on project requirements: 1) Python is suitable for rapid development, data science, and scripting because of its concise syntax and rich libraries; 2) C is suitable for scenarios that require high performance and underlying control, such as system programming and game development, because of its compilation and manual memory management.

Python for Data Science and Machine LearningPython for Data Science and Machine LearningApr 19, 2025 am 12:02 AM

Python is widely used in data science and machine learning, mainly relying on its simplicity and a powerful library ecosystem. 1) Pandas is used for data processing and analysis, 2) Numpy provides efficient numerical calculations, and 3) Scikit-learn is used for machine learning model construction and optimization, these libraries make Python an ideal tool for data science and machine learning.

Learning Python: Is 2 Hours of Daily Study Sufficient?Learning Python: Is 2 Hours of Daily Study Sufficient?Apr 18, 2025 am 12:22 AM

Is it enough to learn Python for two hours a day? It depends on your goals and learning methods. 1) Develop a clear learning plan, 2) Select appropriate learning resources and methods, 3) Practice and review and consolidate hands-on practice and review and consolidate, and you can gradually master the basic knowledge and advanced functions of Python during this period.

Python for Web Development: Key ApplicationsPython for Web Development: Key ApplicationsApr 18, 2025 am 12:20 AM

Key applications of Python in web development include the use of Django and Flask frameworks, API development, data analysis and visualization, machine learning and AI, and performance optimization. 1. Django and Flask framework: Django is suitable for rapid development of complex applications, and Flask is suitable for small or highly customized projects. 2. API development: Use Flask or DjangoRESTFramework to build RESTfulAPI. 3. Data analysis and visualization: Use Python to process data and display it through the web interface. 4. Machine Learning and AI: Python is used to build intelligent web applications. 5. Performance optimization: optimized through asynchronous programming, caching and code

Python vs. C  : Exploring Performance and EfficiencyPython vs. C : Exploring Performance and EfficiencyApr 18, 2025 am 12:20 AM

Python is better than C in development efficiency, but C is higher in execution performance. 1. Python's concise syntax and rich libraries improve development efficiency. 2.C's compilation-type characteristics and hardware control improve execution performance. When making a choice, you need to weigh the development speed and execution efficiency based on project needs.

See all articles

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function