im using dropzone.js
in my project to upload articles image.
for example all of article images will upload here:
www.site.com/images/uploads/.... .jpg
my dropzone usage
var myDropzone = new Dropzone("div#myId", { url: "/file/post"});
$("div#myId").dropzone({ url: "/file/post" });
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
</form>
i want automatically make a folder with (date) name every month in uploads
folder and upload that mount images into this folder.
what can i do? tnx