mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@8007 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			10 lines
		
	
	
		
			227 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			227 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import tempfile
 | |
| import os
 | |
| from django.db import models
 | |
| 
 | |
| UPLOAD_ROOT = tempfile.mkdtemp()
 | |
| UPLOAD_TO = os.path.join(UPLOAD_ROOT, 'test_upload')
 | |
| 
 | |
| class FileModel(models.Model):
 | |
|     testfile = models.FileField(upload_to=UPLOAD_TO)
 |