I have a form which allows a user to upload a file to the server. How can I validate that the uploaded file is in fact the expected format (CSV, or at least validate that it is a text file) in ColdFusion 8?
feedback
|
|
For simple formats like CSV, just check yourself, for example via regex.
You can place additional checks with regard to file size limits or forbidden characters. For other file formats, you can check for header signatures that occur in the first few bytes of the file. You could even write a full parser for your expected file format - for CSV validation, you could do a | |||
|
feedback
|
|
I dont know if it can help you but Ben Nadel wrote excellents posts about CSV: http://www.bennadel.com/blog/483-Parsing-CSV-Data-Using-ColdFusion.htm http://www.bennadel.com/blog/501-Parsing-CSV-Values-In-To-A-ColdFusion-Query.htm | |||
feedback
|
|
I think it's as simple as specifying the accept value in cffile ...Unfortunately the CF8 docs don't specify the value as part of the info for cffile ... It's under file management ...
| |||
|
feedback
|