[Answered ]-Django FilePathField Best Practice

2👍

If you want to handle uploaded files consider using FileField instead of FilePathField. FileField also stores path to the uploaded file, but it is designed to handle new file creation for uploads. FilePathField is just used to point to a path in your file system.

👤navid

Leave a comment