Python----OS 文件目录处理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import os
import time
# 获取当前文件的绝对路径
dir_1 = os.path.abspath(__file__) # D:\workspace\web-test\Study\Day_5-16\tset3.py
# 获取当前文件所在目录的上级路径
dir_2 = os.getcwd() # D:\workspace\web-test\Study\Day_5-16
dir_3_1 = os.path.dirname(dir_1) # D:\workspace\web-test\Study\Day_5-16
dir_3_2 = os.path.dirname(dir_3_1) # D:\workspace\web-test\Study
# 获取当前文件所在目录的上级路径
dir_4 = os.path.abspath(os.path.join(os.getcwd(), "./" )) # D:\workspace\web-test\Study\Day_5-16
dir_5 = os.path.abspath(os.path.join(os.getcwd(), "../" )) # D:\workspace\web-test\Study
dir_6 = os.path.abspath(os.path.join(os.getcwd(), "../../" )) # D:\workspace\web-test
# 获取当前日期
new_time_day = time.strftime( '%Y-%m-%d' ) # 2021-05-21
# 拼接目录
dir_image_day_pingjie = os.path.join(dir_4,new_time_day) # D:\workspace\web-test\Study\Day_5-16\2021-05-21
#判断目录是否存在,不存在就创建
if not os.path.exists(dir_image_day_pingjie):
#创建文件
os.mkdir(dir_image_day_pingjie)
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
import os
# os.mkdir("n1") # 创建目录
# 创建文件
# with open('1.txt',mode='w') as file:
# file.write('11111')
# os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支持
url = r "D:\workspace\test36-demo\study\Day_4_13\n2"
print ( 'n2目录下的内容' ,os.listdir(url)) #列出目录下的所有目录和文件
# os.rename('1.txt','2.txt') # 文件重命名
print (os.getcwd()) # 获取当前目录(绝对路径 )
# os.rmdir('n1') # 删除一个空目录
# os.remove('1.txt') # 删除一个文件
print ( "文件/目录是否存在:" ,os.path.exists( '1.txt' )) # 判断文件/目录是否存在,结果 True/False
print ( '对象是否为目录:' ,os.path.isdir( '2.txt' )) # 判断目录是否存在,是True/否False
print ( '对象是否为文件:' ,os.path.isfile( '2.txt' )) # 判断文件是否存在,是True/否False
print ( '文件/目录的绝对路径:' ,os.path.abspath( 'n1/n1.txt' )) # 获取文件/目录的绝对路径
print ( '获取文件的大小:' ,os.path.getsize( 'n1/n1.txt' )) # 获取文件的大小(单位:b 字节)
url_name = r "D:\workspace\test36-demo\study\Day_4_13\n1\n1.txt"
name = os.path.basename(url) # 获取文件名/文件夹的名称
dir = os.path.dirname(url) # 获取文件/文件夹的路径
print ( 'dir---->' , dir , '\t\t\t' , 'name---->' ,name)
print ( '分离文件名与扩展名:' ,os.path.splitext( 'aa.py' )) # 只会进行分离,不会判断文件是否真实存在
print ( '分离路径和文件:' ,os.path.split( 'D:\w1\w2\w3' )) # 只会进行分离,不会判断目录及文件是否真实存在
print ( '\n\n--------------------------------作业-----------------------------' )
# 练习一:判断文件夹是否存在,不存在就创建文件夹,存在就进去,创建一个文件
if os.path.exists( "n1" ) = = False :
os.mkdir( 'n1' )
os.chdir( 'n1' ) # 进入目录
with open ( 'n1.txt' ,mode = 'w' ) as file :
file .write( '我的新的' )
# 练习二:获取n2文件夹下面的所有内容,删除所有的文件夹
url2 = r "D:\workspace\test36-demo\study\Day_4_13\n2"
data = os.listdir(url2) #列出目录下的所有目录和文件
for i in data:
if os.path.isdir(os.path.join(url2,i)) = = True : # 判断是否是目录
os.rmdir(os.path.join(url2,i)) # 是目录则删除
# 练习三:自己实现一个os.path.split 分离目录与文件夹
url_name = r "D:\workspace\test36-demo\study\Day_4_13\n1"
name = os.path.basename(url) # 获取文件名/文件夹的名称
dir = os.path.dirname(url) # 获取文件/文件夹的路径
print ( '目录---->' , dir , '\t\t\t' , '文件夹---->' ,name)
|
知识点扩展:
Python OS 模块 文件目录操作
os模块中包含了一系列文件操作的函数,这里介绍的是一些在Linux平台上应用的文件操作函数。由于Linux是C写的,低层的libc库和系统调用的接口都是C API,而Python的os模块中包括了对这写接口的Python实现,通过Python的os模块,可以调用系统的功能,进行系统编程。
下面介绍一下os模块中提供的一些文件操作(仅限Unix平台):
返回文件对象的操作
os.fdopen(fd, [mode, [bufsize]])
通过文件描述符 fd 创建一个文件对象,并返回这个文件对象
fd参数是一个打开的文件的描述符,在Unix下,描述符是一个小整数。
mode参数是可选的,和buffersize参数和Python内建的open函数一样,mode参数可以指定‘r,w,a,r+,w+,a+,b'等,表示文件的是只读的还是可以读写的,以及打开文件是以二进制还是文本形式打开。这些参数和C语言中的<stdio.h>中fopen函数中指定的mode参数类似。
bufsize参数是可选的,指定返回的文件对象是否带缓冲:buffersize=0,表示没有带缓冲;bufsize=1,表示该文件对象是行缓冲的;bufsize=正数,表示使用一个指定大小的缓冲冲,单位为byte,但是这个大小不是精确的;bufsize=负数,表示使用一个系统默认大小的缓冲,对于tty字符设备一般是行缓冲,而对于其他文件则一般是全缓冲。如果这个参数没有制定,则使用系统默认的缓冲设定。
os.popen(command, [mode, [bufsize]])
开启一个子进程执行一个command指定的命令,在父进程和子进程之间建立一个管道pipe,用于在父子进程间通信。返回一个文件对象,可以对这个文件对象进行读或写,取决于参数mode,如果mode指定了只读,那么只能对文件对象进行读,如果mode参数指定了只写,那么只能对文件对象进行写操作。
command参数指定需要在子进程中执行的命令.
mode参数和bufsize参数和上述的os.fdopen一样。
os.popen函数还有一些其他的变种,可以按需要使用:
1
|
os.popen2(command, [mode, [bufsize]])
|
在子进程中执行命令command,返回一个二元组(child_stdin, child_stdout)
1
|
os.popen3(command, [mode, [bufsize]])
|
在子进程中执行命令command,返回一个三元组(child_stdin, child_stdout, child_stderr)
1
|
os.popen4(command, [mode, [bufsize]])
|
在子进程中执行命令command,返回一个二元组(child_stdin, child_stdout_and_stderr)
1
|
os.tmpfile()
|
返回一个以”w+b“模式打开的文件对象,该文件对象对应的文件无法通过目录访问,这是一个临时文件,当文件对象被关闭的时候,该临时文件也就被删除。
到此这篇关于Python关于OS文件目录处理的实例分享的文章就介绍到这了,更多相关Python OS文件目录处理内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.cnblogs.com/Z-Queen/p/14725533.html