qiuri2008

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Python代码如下:

复制代码
import os
directory = "E:\\学习日志\\"
os.chdir(directory) # 改变当前工作目录
cwd = os.getcwd() # 查看当前工作目录
print("--------------current working directory : " + cwd + "----------")

def deleteBySize(minSize):
    """删除小于minSize的文件(单位:K)"""
    files = os.listdir(os.getcwd()) # 列出目录中文件
    for file in files:
    ##    print file + " : " + str(os.path.getsize(file))
        if os.path.getsize(file) < minSize * 1000:
            os.remove(file)
            print(file + " deleted.")
    return

def deleteNullFile():
    '''删除所有大小为0的文件'''
    files = os.listdir(os.getcwd()) # 列出目录中文件
    for file in files:
        if os.path.getsize(file) == 0: #得到文件大小,如果是目录返回0
            os.remove(file)
            print(file + " deleted")
    return

def create():
    '''根据本地时间创建新文件,如果已存在则不创建'''
    import time
    #将指定的struct_time(默认为当前时间),根据指定的格式化字符串输出
    t = time.strftime('%Y-%m-%d',time.localtime()) 
    suffix = ".docx"
    newFile =os.getcwd() + "\\" + t + suffix 
    if not os.path.exists(newFile):
        f = open(newFile,'w')
        f.close()
        print newFile + " created."
    else:
        print newFile + " already exist."
    return

hint = '''funtion : 
        1    create new file
        2    delete null file
        3    delete by size
        q    quit\n
please input number: '''
while True:
    option = raw_input(hint)
    if cmp(option,"1") == 0:
        create()
    elif cmp(option,"2") == 0:
        deleteNullFile()
    elif cmp(option,"3") == 0:
        minSize = raw_input("minSize(K) : ")
        deleteBySize(minSize)
    elif cmp(option,"q") == 0:
        print "quit !"
        break
    else:
        print ("disabled input. please try again...")
复制代码

 

主要涉及到的就是一些文件操作函数和时间函数。

posted on 2017-04-07 16:56  江召伟  阅读(439)  评论(0编辑  收藏  举报