Hey! I’ve been trying to use FileField but I’ve just realised if there’s a path that’s being uploaded e.g /test/myfile.txt Django seems to auto strip this path and only store myfile.txt. Is there a way to let Django ignore the stripping and store in their own folders?
Everything I see online just talks about a dynamic upload_to, but I need even more than that, allowing the actual user to choose directories on top of that.
Thanks!