python扫描_[Python] 文件扫描

importosimporttimeclassFileObject:"""文件对象"""

def __init__(self, filePath):"""创建FileObject对象

:param filePath: 文件路径"""self.__tree_file_objects =None

self.__scan_depth =None

self.__exists =False

self.__file_path =None

self.__is_file =None

self.__is_dir =None

self._is_link=None

self.__size =None

self.__last_modification_time =None

self.__last_access_time =None

self.__metadata_change_time =None

self.__file_name =None

self.__dir_name =Noneifos.path.exists(filePath):

self.__scan_depth =0

self.__exists =True

self.__file_path =filePath

self.__is_file =os.path.isfile(filePath)

self.__is_dir =os.path.isdir(filePath)

self._is_link=os.path.islink(filePath)

self.__size =os.path.getsize(filePath)

self.__last_modification_time =os.path.getmtime(filePath)

self.__last_access_time =os.path.getatime(filePath)

self.__metadata_change_time =os.path.getctime(filePath)

self.__file_name =os.path.basename(filePath)

self.__dir_name =os.path.dirname(filePath)if self.__is_dir:

sel

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值