posts - 431,  comments - 344,  trackbacks - 0
修改settings.py添加
DEFAULT_FILE_STORAGE = 'icate.system.storage.ImageStorage'
我的项目名字为icate,添加文件夹system,并添加一个空白文件__init__.py,加入storage.py文件,内容为:

#coding=utf8
from django.core.files.storage import FileSystemStorage
class ImageStorage(FileSystemStorage):
    from django.conf import settings
   
    def __init__(self, location=settings.MEDIA_ROOT, base_url=settings.MEDIA_URL):
        #初始化
        super(ImageStorage, self).__init__(location, base_url)

    #重写 _save方法        
    def _save(self, name, content):
        import os, time, random
        #文件扩展名
        ext = os.path.splitext(name)[1]
        #文件目录
        d = os.path.dirname(name)
        #定义文件名,年月日时分秒随机数
        fn = time.strftime('%Y%m%d%H%M%S')
        fn = fn + '_%d' % random.randint(0,100)
        #重写合成文件名
        name = os.path.join(d, fn + ext)
        #调用父类方法
        return super(ImageStorage, self)._save(name, content)

posted on 2009-04-03 18:02 周锐 阅读(3872) 评论(1)  编辑  收藏 所属分类: Python

只有注册用户登录后才能发表评论。


网站导航: