Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to understand python os module

2025-02-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article is to share with you about how to understand the python os module, the editor thinks it is very practical, so I share it with you to learn. I hope you can get something after reading this article.

File system module: os

Table of contents:

Chdir (): switch the working directory

Chroot (): sets the root directory of the current process

Listdir (): lists all file names in the specified directory

Mkdir (): creates the specified directory

Makedirs (): how long the directory is created

Getcwd (): get the working directory

Rmdir (): delete a directory

Removedirs (): delete multi-level directories

File:

Mkfifo (): create pipe

Mknod (): create a device file

Remove (): delete files

Unlink (): delete linked files

Rename (): rename

Stat (): put back the status information of the file

Symlink (): create a linked file

Utime (): update timestamp

Tmpfile (): create and open a new temporary file

Walk (): create a directory tree

Related to access rights

Access (): verifies the permission mode of a user or user group

Chmod (): modify permissions

Chown (): modify the owner and group

Umask (): sets the default permission mode

File descriptor:

Open (): open of the underlying operating system ()

Read ():

Write ():

Device file:

Makedev ():

Major (): get the main equipment number

Minor (): get the secondary device number

Path Management:

Import os.path

Basename (): path base name

Dirname (): path directory name

Join (): consolidate file name

Split (): returns dirname (), basename () tuple

Splitext (): returns (filename,extension) tuple

Information:

Getatime ()

Getctime ()

Getmtime ()

Getsize (): returns the file size

Query

Exists (): determines whether the specified file exists

Isabs (): determines whether the specified path is an absolute path

Isdir (): whether it is a directory

Isfile (): whether it is a file

Islink (): whether it is a symbolic link

Ismount (): whether it is the mount point

Samefile (): whether the two paths point to the same file

The above is how to understand the python os module, the editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report