在 Python 中一旦涉及到路径相关的操作,os.path() 模块无疑是用得最多的了,下面就让我们一块来看看吧!
方法
|
说明
|
os.path.abspath(path)
|
返回绝对路径
|
os.path.basename(path)
|
返回文件名
|
os.path.commonprefix(list)
|
返回list(多个路径)中,所有path共有的最长的路径
|
os.path.dirname(path)
|
返回文件所在目录路径
|
os.path.exists(path)
|
路径存在则返回True,路径损坏返回False
|
os.path.lexists(path)
|
路径存在则返回True,路径损坏也返回True (Test whether a path exists. Returns True for broken symbolic links)
|
os.path.expanduser(path)
|
把path中包含的"~"和"~user"转换成用户目录
|
os.path.expandvars(path)
|
根据环境变量的值替换path中包含的"$name"和"${name}"
|
os.path.getatime(path)
|
返回最近访问时间(浮点型秒数)
|
os.path.getmtime(path)
|
返回最近文件修改时间
|
os.path.getctime(path)
|
返回文件 path 创建时间
|
os.path.getsize(path)
|
返回文件大小,如果文件不存在就返回错误
|
os.path.isabs(path)
|
判断是否为绝对路径
|
os.path.isfile(path)
|
判断路径是否为文件
|
os.path.isdir(path)
|
判断路径是否为目录
|
os.path.islink(path)
|
判断路径是否为链接
|
os.path.ismount(path)
|
判断路径是否为挂载点
|
os.path.join(path1[, path2[, ...]])
|
把目录和文件名合成一个路径
|
os.path.normcase(path)
|
转换path的大小写和斜杠
|
os.path.normpath(path)
|
规范path字符串形式
|
os.path.realpath(path)
|
返回path的真实路径
|
os.path.relpath(path[, start])
|
从start开始计算相对路径
|
os.path.samefile(path1, path2)
|
判断目录或文件是否相同
|
os.path.sameopenfile(fp1, fp2)
|
判断fp1和fp2是否指向同一文件
|
os.path.samestat(stat1, stat2)
|
判断stat tuple stat1和stat2是否指向同一个文件
|
os.path.split(path)
|
把路径分割成 dirname 和 basename,返回一个元组
|
os.path.splitdrive(path)
|
一般用在 windows 下,返回驱动器名和路径组成的元组
|
os.path.splitext(path)
|
分割路径中的文件名与拓展名
|
os.path.splitunc(path)
|
把路径分割为加载点与文件
|
os.path.walk(path, visit, arg)
|
Python3 好像没这个了,应该变成 os.walk() 了。
|
os.path.supports_unicode_filenames
|
设置是否支持unicode路径名
|
os.path.abspath(path)
>>> os.path.abspath('test.py')
'/root/workspace/python3_learning/test.py'
os.path.basename(path)
>>> os.path.basename('/root/workspace/python3_learning/test.py')
'test.py'
os.path.commonprefix(list)
>>> os.path.commonprefix(['/root/test.py', '/root/workspace/python3_learning'])
'/root/'
os.path.dirname(path)
>>> os.path.dirname('/root/workspace/python3_learning/test.py')
'/root/workspace/python3_learning'
os.path.exists(path)
>>> os.path.exists('/root/workspace/python3_learning/test.py')
>>> os.path.exists('/root/workspace/python3_learning/test3.py')
False
os.path.lexists(path)
test.py.bak 是 test.py 的符号链接。符号链接所指向的文件即使不存在了,只要符号链接仍然存在,也仍然返回 True。
>>> os.path.lexists('test.py.link')
>>> os.path.exists('test.py.link')
>>> os.remove('test.py')
>>> os.path.lexists('test.py.link')
>>> os.path.exists('test.py.link')
False
os.path.expanduser(path)
# root
>>> os.path.expanduser('~/workspace')
'/root/workspace'
# looking
>>> os.path.expanduser('~/workspace')
'/home/looking/workspace'
os.path.expandvars(path)
>>> os.path.expandvars('${HOME}/workspace')
'/root/workspace'
os.path.getatime(path)
>>> os.path.getatime('test2.py')
1611627917.5157754
os.path.getmtime(path)
>>> os.path.getmtime('test2.py')
1609834946.9199047
os.path.getctime(path)
>>> os.path.getctime('test2.py')
1609834946.9209046
os.path.getsize(path)
>>> os.path.getsize('test2.py')
os.path.isabs(path)
>>> os.path.isabs('/root/workspace/python3_learning/test.py')
>>> os.path.isabs('python3_learning/test.py')
False
os.path.isfile(path)
>>> os.path.isfile('test.py')
>>> os.path.isfile('non-exists')
False
os.path.isdir(path)
>>> os.path.isdir('.')
>>> os.path.isdir('test.py')
False
os.path.islink(path)
>>> os.path.islink('test.py')
False
>>> os.path.islink('test.py.link')
os.path.ismount(path)
>>> os.path.ismount('/dev/mapper/centos-root')
False
>>> os.path.ismount('/')
>>> os.path.ismount('/dev')
os.path.join(path1[, path2[, ...]])
>>> os.path.join('/root', 'workspace', 'python3_learning/')
'/root/workspace/python3_learning/'
os.path.normcase(path)
>>> os.path.normcase('/root\/dft')
'/root\\/dft'
os.path.normpath(path)
>>> os.path.normpath('./../a/b/../c')
'../a/c'
os.path.realpath(path)
>>> os.path.realpath('test.py')
'/root/workspace/python3_learning/test.py'
os.path.samefile(path1, path2)
>>> os.path.samefile('test.py', 'test2.py')
False
>>> os.path.samefile('test.py', 'test.py')
>>> os.path.samefile('test.py', 'test.py.link')
os.path.sameopenfile(fp1, fp2)
>>> fd1 = os.open('test.txt', os.O_RDWR|os.O_CREAT)
>>> fd2 = os.open('test.txt', os.O_RDWR|os.O_CREAT)
>>> os.path.sameopenfile(fd1, fd2)
>>> fd3 = os.open('foo.txt', os.O_RDWR|os.O_CREAT)
>>> os.path.sameopenfile(fd1, fd3)
False
os.path.samestat(stat1, stat2)
>>> os.path.samestat(os.stat('test.py'), os.stat('test.py'))
>>> os.path.samestat(os.stat('test.py'), os.stat('test.py.link'))
>>> os.path.samestat(os.stat('test.py'), os.stat('test2.py'))
False
os.path.split(path)
>>> os.path.split('/root/workspace/python3_learning/test.py')
('/root/workspace/python3_learning', 'test.py')
os.path.splitext(path)
>>> os.path.splitext('/root/workspace/python3_learning/test.py')
('/root/workspace/python3_learning/test', '.py')
>>> os.path.splitext('test.py')
('test', '.py')
pathlib.Path()
当然还有纯路径对象 pathlib.PurePath(),纯路径对象提供了不实际访问文件系统的路径处理操作。如果你处理的路径,并不关心它在当前文件系统上是否存在,就最好用它了。当然,它自然也没有像 .exists() 之类的方法了。
>>> import pathlib
和 os、os.path 的部分功能很像。
Path.as_posix()
C:\Users\xxx>python
Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pathlib
>>> pathlib.Path(r".\src\scan\system\test.py")
WindowsPath('src/scan/system/test.py')
>>> pathlib.Path(r".\src\scan\system\test.py").as_posix()
'src/scan/system/test.py'
Path.chmod()
[root@master python3_learning]# ll
total 0
-rw-r--r--. 1 root root 0 Nov 26 09:17 test.py
[root@master python3_learning]# python3
Python 3.6.8 (default, Aug 7 2019, 17:28:10)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pathlib
>>> pathlib.Path('test.py').chmod(0o750)
[root@master python3_learning]# ll
total 0
-rwxr-x---. 1 root root 0 Nov 26 09:17 test.py*
Path.iterdir()
和 os.listdir() 比较像,只不过这儿返回的是一个可迭代对象。
>>> import pathlib
>>> pathlib.Path('.').iterdir() # 生成目录的可迭代对象
<generator object Path.iterdir at 0x7fef228979e8>
>>> [x for x in pathlib.Path('.').iterdir()]
[PosixPath('test.py'), PosixPath('test')]
Path.cwd()
>>> os.getcwd()
'/root/workspace/python3_learning'
>>> str(pathlib.Path().cwd())
'/root/workspace/python3_learning'
Path.resolve()
类似于 os.path.abspath(),一般可以用来查找软链接文件对应的真实文件。不过 Path.resolve() 似乎一直返回的绝对路径,os.readlink() 如果读取到真实文件就在当前目录,就不返回绝对路径了。推荐先使用 Path.resolve() 来解析符号链接以及消除 ".."
组件。
>>> import pathlib
>>> pathlib.Path('test.py').resolve()
PosixPath('/root/workspace/python3_learning/test.py')
>>> pathlib.Path('test.py.link').resolve()
PosixPath('/root/workspace/python3_learning/test.py')
>>> import os
>>> os.readlink('test.py.link')
'test.py'
>>> os.readlink(os.path.abspath('test.py.link'))
'test.py'
>>> os.path.abspath('test.py.link')
'/root/workspace/python3_learning/test.py.link'
>>> os.path.abspath(os.readlink('test.py.link'))
'/root/workspace/python3_learning/test.py'
[root@master python3_learning]# ll
total 76
-rw-r--r--. 1 root root 422 Mar 10 09:55 test.py
lrwxrwxrwx. 1 root root 7 Feb 3 17:37 test.py.link -> test.py
lrwxrwxrwx. 1 root root 13 Mar 11 09:01 test.sh.link -> /root/test.sh
-rwxr-xr-x. 1 root root 0 Feb 3 18:31 test.txt
>>> os.path.abspath(os.readlink('test.sh.link'))
'/root/test.sh'
>>> str(pathlib.Path('test.sh.link').resolve())
'/root/test.sh'
>>> os.readlink('test.py.link')
'test.py'
>>> str(pathlib.Path('test.py.link').resolve())
'/root/workspace/python3_learning/test.py'
Path.exists()
>>> pathlib.Path('test.py').exists()
>>> pathlib.Path('tet.py').exists()
False
Path.is_dir()
>>> pathlib.Path('test.py').is_dir()
False
>>> pathlib.Path('test3').is_dir()
Path.is_file()
>>> pathlib.Path('test.py').is_file()
>>> pathlib.Path('test3').is_file()
False
Path.is_symlink()
>>> pathlib.Path('test.py').is_symlink()
False
>>> pathlib.Path('test.py.link').is_symlink()
Path.symlink_to()
创建一个指向已有路径的符号链接
>>> pathlib.Path('/root/workspace/python3_learning/test.link').symlink_to('test.py')
>>> pathlib.Path('/root/workspace/python3_learning/test.link').is_symlink()
Path.is_absolute()
>>> pathlib.Path('test.py').is_absolute()
False
>>> pathlib.Path('/root/workspace/python3_learning/test.py').is_absolute()
Path.joinpath()
>>> str(pathlib.Path('/root').joinpath('hello', 'world'))
'/root/hello/world'
>>> pathlib.Path('/root').joinpath('hello', 'world').name
'world'
>>> pathlib.Path('/root').joinpath('hello', 'world').parent
PosixPath('/root/hello')
下面这种路径的拼接方式是不是挺简单粗暴的!!!:)
>>> pathlib.Path('/root') / 'hello'
PosixPath('/root/hello')
>>> pathlib.Path('/root') / pathlib.Path('hello')
PosixPath('/root/hello')
>>> pathlib.Path('/root') / pathlib.Path('hello', 'world')
PosixPath('/root/hello/world')
Path.expanduser()
>>> pathlib.Path('~/workspace').expanduser()
PosixPath('/root/workspace')
Path.rename()
>>> list(pathlib.Path('/root/workspace/python3_learning/').glob('*.py'))
[PosixPath('/root/workspace/python3_learning/test.py')]
>>> pathlib.Path('/root/workspace/python3_learning/test.py').rename('test2.py')
>>> list(pathlib.Path('/root/workspace/python3_learning/').glob('*.py'))
[PosixPath('/root/workspace/python3_learning/test2.py')]
Path.replace()
>>> pathlib.Path('/root/workspace/python3_learning/test2.py').replace('test.py')
>>> list(pathlib.Path('/root/workspace/python3_learning/').glob('*.py'))
[PosixPath('/root/workspace/python3_learning/test.py')]
Path.write_text()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').write_text('hello world')
[root@master python3_learning]# cat test.py
hello world
Path.read_text()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').read_text()
'hello world'
Path.rmdir()
只可以删除空目录
>>> pathlib.Path('/root/workspace/python3_learning/test').rmdir()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python3.6/pathlib.py", line 1292, in rmdir
self._accessor.rmdir(self)
File "/usr/lib64/python3.6/pathlib.py", line 387, in wrapped
return strfunc(str(pathobj), *args)
OSError: [Errno 39] Directory not empty: '/root/workspace/python3_learning/test'
>>> pathlib.Path('/root/workspace/python3_learning/test2').rmdir()
Path.touch()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').touch()
Path.unlink()
删除文件或符号链接
>>> pathlib.Path('/root/workspace/python3_learning/test.link').unlink()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').unlink()
Path.owner()
>>> pathlib.Path('/home/looking').owner()
'looking'
>>> pathlib.Path('/root').owner()
'root'
Path.group()
>>> pathlib.Path('/home/looking').group()
'looking'
>>> pathlib.Path('/root').group()
'root'
Path.name
>>> pathlib.Path('/root/workspace/python3_learning/test.py').name
'test.py'
Path.stem
>>> pathlib.Path('/root/workspace/python3_learning/test.py').stem
'test'
Path.parent
>>> pathlib.Path('/root/workspace/python3_learning/test.py').parent
PosixPath('/root/workspace/python3_learning')
Path.parents
>>> list(pathlib.Path('/root/workspace/python3_learning/test.py').parents)
[PosixPath('/root/workspace/python3_learning'), PosixPath('/root/workspace'), PosixPath('/root'), PosixPath('/')]
Path.suffix
>>> pathlib.Path('/root/workspace/python3_learning/test.py').suffix
'.py'
Path.suffixes
>>> pathlib.Path('/root/workspace/python3_learning/test.py.bak').suffixes
['.py', '.bak']
Path.parts
>>> pathlib.Path('/root/workspace/python3_learning/test.py').parts
('/', 'root', 'workspace', 'python3_learning', 'test.py')
Path.root
>>> pathlib.Path('/root/workspace/python3_learning/test.py').root
Path.with_name()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').with_name('hello.py')
PosixPath('/root/workspace/python3_learning/hello.py')
Path.with_suffix()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').with_suffix('.rb')
PosixPath('/root/workspace/python3_learning/test.rb')
Path.match()
>>> pathlib.Path('/root/workspace/python3_learning/test.py').match('*.py')
>>> pathlib.Path('/root/workspace/python3_learning/test.py').match('*.rb')
False
Path.glob()
解析相对于此路径的通配符 pattern,产生所有匹配的文件。使用 *.py 的话会在当前目录匹配,使用 */*.py 会在相对于当前目录的二级目录进行匹配。使用 ** 会启用递归匹配(很实用的),比如查找当前目录及所有子目录使用 **,使用 **/*.py 则会匹配目录下所有 py 文件。
>>> list(pathlib.Path('/root/workspace/python3_learning/').glob('*.py'))
[PosixPath('/root/workspace/python3_learning/world.py'),
PosixPath('/root/workspace/python3_learning/ip-address.py'),
PosixPath('/root/workspace/python3_learning/test.py'),
PosixPath('/root/workspace/python3_learning/minio_client.py'),
PosixPath('/root/workspace/python3_learning/test2.py'),
PosixPath('/root/workspace/python3_learning/find_symbolic_links.py')]
Path.rglob()
比 glob 多了一个 r,r 表示递归(recursive)的意思。下面这两种通配方式等价。
>>> list(pathlib.Path('/root/workspace/python3_learning/').rglob('*.py'))
[PosixPath('/root/workspace/python3_learning/world.py'),
PosixPath('/root/workspace/python3_learning/ip-address.py'),
PosixPath('/root/workspace/python3_learning/test.py'),
PosixPath('/root/workspace/python3_learning/minio_client.py'),
PosixPath('/root/workspace/python3_learning/test2.py'),
PosixPath('/root/workspace/python3_learning/find_symbolic_links.py'),
PosixPath('/root/workspace/python3_learning/test3/test.py')]
"**
" 模式表示 “此目录以及所有子目录,递归”。换句话说,它启用递归通配。
>>> list(pathlib.Path('/root/workspace/python3_learning/').glob('**/*.py'))
[PosixPath('/root/workspace/python3_learning/world.py'),
PosixPath('/root/workspace/python3_learning/ip-address.py'),
PosixPath('/root/workspace/python3_learning/test.py'),
PosixPath('/root/workspace/python3_learning/minio_client.py'),
PosixPath('/root/workspace/python3_learning/test2.py'),
PosixPath('/root/workspace/python3_learning/find_symbolic_links.py'),
PosixPath('/root/workspace/python3_learning/test3/test.py')]
1 文件路径名操作
对于文件路径名的操作在编程中是必不可少的,比如说,有时候要列举一个路径下的文件,那么首先就要获取一个路径,再就是路径名的一个拼接问题,通过字符串的拼接就可以得到一个路径名。Python中3.4版本前使用os.path模块中的函数来操作路径名;3.4版本开始提供pathlib模块,使用Path对象来对目录和文件进行操作。
2 os.path模块
from os import path
p = path.join('/etc', 'sysconfig', 'network') # 根据不同的系统,将每个字符串组合成路径形式
print(type(p), p)
print
#路径中可用/,则不需用r''声明
#type(p)为WindowsPath,非str
p = Path('E:\20200907','ImgFloder','0_right.jpg') #路径可拼接
p.join
p=Path(r'C:\Users\Public')
files=[x for x in p.glob('**/*') if x.is_file()] # 获取路径下的所有文件
for file in files:
d.append((file.stat().st_size,file.name,file.parent))
.name # 获取文件名全称(包含扩展名)
.stem # 获取
# 使用 pathlib 中的 Path,对于路径拼接,拆分等操作都能很好的支持
test_path = Path('/Users/xxx/Desktop/project/data/')
file_name = 'hello_game_LevelUp.csv'
file_path = test_path/file_name # 直接使用斜杆拼接路径即可
file_path_na...
pathlib——面向对象的文件系统路径代码资源:Lib/pathlib.py该模块提供了一些使用语义表达来表示文件系统路径的类,这些类适合多种操作系统。路径类被划分为纯路径(该路径提供了不带I/O的纯粹计算操作),以及具体路径(从纯路径中继承而来,但提供了I/O操作)。如果你之前从未使用过该模块或者不能确认该模块中那个类是你的任务所需要,请使用Path函数进行判别。它实例化了一个平台代码运行的具...
Python pathlib Path
这个module提供一个类来表示不同文件系统的路径, pure paths,代表非实体路径,不进行I/O操作, concrete paths继承 pure paths 但是也可以进行I/O操作。
基本使用示例:
from pathlib import Path
#Listing subdirectories:
p = Path('.')
[x for x in p.iterdir() if x.is_dir()]
[PosixPath('.ipynb_ch
python pathlib Path 目录使用
文章目录获取路径文件名字操作路径的判断获取路径下的文件及目录路径的拼接删除文件及文件夹
写程序,总是离不开与目录打交道,最早用的是 os.path 后来无意间发现了 pathlib 库里面的 Path,使用了一段时间,感觉太好用了,总结一下
Path 是把一个路径转化成一个对象,是面向对象的文件系统路径
获取路径
from pathlib import Path
## 获取当前目录
current_path = Path.cwd()
print(curr