当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.path.size()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。

os.path.getsize()Python中的方法用于检查指定路径的大小。它以字节为单位返回指定路径的大小。如果文件不存在或无法访问,则引发OSError。

用法: os.path.getsize(path)

参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。

返回类型:此方法返回一个整数值,该整数值表示指定路径的大小(以字节为单位)。

代码1:使用os.path.getsize()方法

# Python program to explain os.path.getsize() method  
    
# importing os module  
import os 
  
# Path 
path = '/home/User/Desktop/file.txt'
  
# Get the size (in bytes) 
# of specified path  
size = os.path.getsize(path) 
  
  
# Print the size (in bytes) 
# of specified path  
print("Size (In bytes) of '%s':" %path, size)
输出:
Size (In bytes) of '/home/User/Desktop/file.txt': 243

代码2:使用os.path.getsize()方法时的处理错误

# Python program to explain os.path.getsize() method  
    
# importing os module  
import os 
  
# Path 
path = '/home/User/Desktop/file2.txt'
  
# Get the size (in bytes) 
# of specified path  
try : 
    size = os.path.getsize(path) 
  
except OSError : 
    print("Path '%s' does not exists or is inaccessible" %path) 
    sys.exit() 
  
# Print the size (in bytes) 
# of specified path  
print("Size (In bytes) of '% s':" % path, size)
输出:
Path '/home/User/Desktop/file2.txt' does not exists or is inaccessible

参考: https://docs.python.org/3/library/os.path.html



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.size() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。