tabcmd
tabcmd copied to clipboard
check for max csv file size
// Max size is 100MB. Allows for 100K users with average 1K entry for each.
| final long maxLength = 10010241024; | if (csvFile.length() > maxLength) {