我正在以这种方式实现文件上传功能
<html>
<head>
<title>File Uploading Form</title>
</head>
<body>
<h3>File Upload:</h3>
Select a file to upload: <br />
<form action="UploadServlet" method="post"
enctype="multipart/form-data">
<input type="file" name="file" size="50" />
<br />
<input type="submit" value="Upload File" />
</form>
</body>
现在我想限制某些文件类型的用户,这意味着当浏览窗口打开时,他将能够选择除.bin
&之外的所有文件.dat
。
意味着用户将无法看到类型为 .bin 的文件,而.bat
其他他可以看到并可以上传它们的文件。
我熟悉accept
属性,但是在我的情况下它没有用,因为用户应该能够选择除这两个之外的任何文件类型。
那么如何在没有验证的情况下实现这一点呢?
I want to provide such a functionality that when user clicks on browse button and open a browse window to select a file , he should be able to see only files without .bin or .dat extension
有没有办法做到这一点?
谢谢,