What I m trying to do is get a count of selected files in dropzone before upload them.
var count= myDropzoneNST.getAcceptedFiles().length;
// To access all files count
myDropzone.files.length
// To access only accepted files count
myDropzone.getAcceptedFiles().length
// To access all rejected files count
myDropzone.getRejectedFiles().length
// To access all queued files count
myDropzone.getQueuedFiles().length
// To access all uploading files count
myDropzone.getUploadingFiles().length
Get from document API here