zoukankan      html  css  js  c++  java
  • Python创建删除文件

    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
    
    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...")
    复制代码

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

  • 相关阅读:
    Java DES 测试
    HttpClient3.1 警告: Cookie rejected:
    WebService实现文件上传下载
    使用dom4j生成xml字符串,以及解析xml字符串
    Java 单例总结
    weblogic使用脚本部署
    Java比较两个日期的大小
    Ubuntu14.04 weblogic11g集群环境测试
    Gson 禁止特殊字符转码
    只用CSS做到完全居中
  • 原文地址:https://www.cnblogs.com/jiangzhaowei/p/6679000.html
Copyright © 2011-2022 走看看