zoukankan      html  css  js  c++  java
  • 用python 实现上传文件功能

    环境 Apache + mod_python

    如文件小可以采用这个方式

    import os

    def form():
       return """\
    <html><body>
    <form enctype="multipart/form-data" action="./upload" method="post">
    <p>File: <input type="file" name="file"></p>
    <p><input type="submit" value="Upload"></p>
    </form>
    </body></html>
    """

    def upload(req):
      
       try: # Windows needs stdio set for binary mode.
          import msvcrt
          msvcrt.setmode (0, os.O_BINARY) # stdin  = 0
          msvcrt.setmode (1, os.O_BINARY) # stdout = 1
       except ImportError:
          pass

       # A nested FieldStorage instance holds the file
       fileitem = req.form['file']

       # Test if the file was uploaded
       if fileitem.filename:

          # strip leading path from file name to avoid directory traversal attacks
          fname = os.path.basename(fileitem.filename)
          # build absolute path to files directory
          dir_path = os.path.join(os.path.dirname(req.filename), 'files')
          open(os.path.join(dir_path, fname), 'wb').write(fileitem.file.read())
          message = 'The file "%s" was uploaded successfully' % fname

       else:
          message = 'No file was uploaded'
      
       return """\
    <html><body>
    <p>%s</p>
    <p><a href="./form">Upload another file</a></p>
    </body></html>
    """ % message


    如文件大时,可以分块上传,现在是改良方式

    import os

    def form():
       return """\
    <html><body>
    <form enctype="multipart/form-data" action="./upload" method="post">
    <p>File: <input type="file" name="file"></p>
    <p><input type="submit" value="Upload"></p>
    </form>
    </body></html>
    """

    # Generator to buffer file chunks
    def fbuffer(f, chunk_size=10000):
       while True:
          chunk = f.read(chunk_size)
          if not chunk: break
          yield chunk

    def upload(req):
      
       try: # Windows needs stdio set for binary mode.
          import msvcrt
          msvcrt.setmode (0, os.O_BINARY) # stdin  = 0
          msvcrt.setmode (1, os.O_BINARY) # stdout = 1
       except ImportError:
          pass

       # A nested FieldStorage instance holds the file
       fileitem = req.form['file']

       # Test if the file was uploaded
       if fileitem.filename:

          # strip leading path from file name to avoid directory traversal attacks
          fname = os.path.basename(fileitem.filename)
          # build absolute path to files directory
          dir_path = os.path.join(os.path.dirname(req.filename), 'files')
          f = open(os.path.join(dir_path, fname), 'wb', 10000)

          # Read the file in chunks
          for chunk in fbuffer(fileitem.file):
             f.write(chunk)
          f.close()
          message = 'The file "%s" was uploaded successfully' % fname

       else:
          message = 'No file was uploaded'
      
       return """\
    <html><body>
    <p>%s</p>
    <p><a href="./form">Upload another file</a></p>
    </body></html>
    """ % message



    from:http://long.objectis.net/wanglaoriji/yongpython-shixianshangzhuanwenjiangongneng

  • 相关阅读:
    如何提高码农产量,基于ASP.NET MVC的敏捷开发框架开发随笔一
    ASP.NET MVC快速开发框架清新简洁界面设计,有兴趣可以模仿参考
    大湿教我写程序(3)之自动补全(屌丝没有春天)篇
    大湿教我写程序(2)之走向AV之路
    大湿教我写程序(1)之菜单导航篇
    打造一套UI与后台并重.net通用权限管理系统
    如何提高码农产量,基于ASP.NET MVC的敏捷开发框架之自定义表单开发随笔四
    如何提高码农产量,基于ASP.NET MVC的敏捷开发框架之工作流开发随笔三
    摆平客户的需求变更之表单扩展属性
    快速开发框架(FDMS)新增1000个对外接口都不须要手写一行代码
  • 原文地址:https://www.cnblogs.com/dkblog/p/1980646.html
Copyright © 2011-2022 走看看