我们可以用 HTML5 文件 Api 打开带有自定义位置的 Windows 资源管理器吗?
Can we open Windows Explorer with custom location with HTML5 File Api?
通过使用下面的行,它会打开由 Windows Explorer 设置的位置。但是我们可以通过使用HTML5 FileApi[为每个点击浏览按钮等的用户打开一些自定义位置,比如c:\images.... =26=].
<input type="file" id="file" name="fileslist[]" multiple
onchange="handleFileSelected()" />
谢谢...
由于安全原因,这是不可能的,也因为不同的操作系统有不同的文件系统(在 windows 我们有磁盘,比如 c:\
或 d:\
, 在类 unix 系统中我们有分区,比如 /Users
)
据我所知,您无法控制默认位置。
来自 HTMLHelp.com :
The file input type creates a field through which users can upload
files from their local computer or network. The VALUE attribute
specifies the name of the initial file, but it is typically ignored by
browsers as a security precaution. Therefore, setting an initial value
is not supported.
通过使用下面的行,它会打开由 Windows Explorer 设置的位置。但是我们可以通过使用HTML5 FileApi[为每个点击浏览按钮等的用户打开一些自定义位置,比如c:\images.... =26=].
<input type="file" id="file" name="fileslist[]" multiple
onchange="handleFileSelected()" />
谢谢...
由于安全原因,这是不可能的,也因为不同的操作系统有不同的文件系统(在 windows 我们有磁盘,比如 c:\
或 d:\
, 在类 unix 系统中我们有分区,比如 /Users
)
据我所知,您无法控制默认位置。
来自 HTMLHelp.com :
The file input type creates a field through which users can upload files from their local computer or network. The VALUE attribute specifies the name of the initial file, but it is typically ignored by browsers as a security precaution. Therefore, setting an initial value is not supported.