获取文件大小-服务器端验证

时间:2019-02-10 01:39:53

标签: html google-apps-script server-side html-form

我正在尝试对带有文件附件的表单进行服务器端验证。我无法弄清楚获取文件大小的正确语法。我尝试过:

form.myFile.files[0].size;
form.myFile.file.size;
form.myFile.getSize();

form.myFile.getName(); // this works and does return the name of the file.


这只是提交到* .gs页面的html表单。 <input type="file" id="myFile">然后,在* .gs页面上-doGet()-然后提取表格。


有什么想法吗?非常感谢!!!

1 个答案:

答案 0 :(得分:0)

form.myFile.length; // that worked!