I want to upload files to a path that is still in my django project, but in my MEDIA_ROOT
path.
When I try to do this I get a SuspiciousOperation
Yes there is a way:
From docs:
For example, the following code will store uploaded files under /media/photos regardless of what your MEDIA_ROOT setting is:
from django.db import models
from django.core.files.storage import FileSystemStorage
fs = FileSystemStorage(location='/media/photos')
class Car(models.Model):
...
photo = models.ImageField(storage=fs)