码迷,mamicode.com
首页 > 编程语言 > 详细

python学习--标准库之os 实例(3)

时间:2017-11-22 20:04:00      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:size   bin   ls -l   日期   python   pre   usr   strftime   /usr   

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#列出当前目录下文件的大小和创建日期及文件名,相当于ls -l命令

from datetime import datetime
import os

pwd = os.path.abspath(.)

print(      Size     Last Modified  Name)
print(------------------------------------------------------------)

for f in os.listdir(pwd):
    f_size = os.path.getsize(f)
    if f_size > 1024:
        k_size = round(f_size / 1024, 1)
        f_size = str(k_size) + K
        if k_size > 1024:
            m_size = round(k_size / 1024, 1)
            f_size = str(m_size) + M
            if m_size > 1024:
                g_size = round(m_size / 1024, 1)
                f_size = str(g_size) + G
    else:
        f_size = str(f_size) + B

    mtime = datetime.fromtimestamp(os.path.getmtime(f)).strftime(%Y-%m-%d %H:%M)
    flag = / if os.path.isdir(f) else ‘‘
    ‘‘‘if os.path.isdir(f):
        t = ‘/‘
    else:
        t = ""
    ‘‘‘
    #print(‘%10d  %s  %s%s‘ % (fsize, mtime, f, flag))
    print("{:>10}{:^20}{}{}".format(f_size, mtime, f, flag))

 

python学习--标准库之os 实例(3)

标签:size   bin   ls -l   日期   python   pre   usr   strftime   /usr   

原文地址:http://www.cnblogs.com/hayden1106/p/7880427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!