How to Create a New Folder for Downloading a File

99封情书 提交于 2019-12-02 00:41:55

问题


I want to download folder that client side (browser) make.

I considered using File API, but I can't find how to make folder.

For example, some png make from html canvas put one folder, I want to save this folder with download dialog.

I want to use a folder for some file to one folder.and I must download only once.

Please advise me.

html

<a download='folder' href='#' onclick="Download()">download</a>

回答1:


You can use FSO.js, but be warned that it currently only works in Chrome. Additionally, the folders you create can only really be accessed from within your webapp (for example, you can't choose to write a specific folder on the C drive).




回答2:


Firstly, You can't really interact with the local system or the server with JavaScript because of security. You can call a server-side script with JavaScript, via AJAX.

If you don't care, you can check out Javascript FSO CreateFolder Method

JavaScript Example...

// initialize ActiveXObject and create an object of Scripting.FileSystemObject.  
var fso = new ActiveXObject("Scripting.FileSystemObject");  

// creates a folder with specified name at the specified location  
fso.CreateFolder("C:\\Temp\\myFolder");  

fso = null;  


来源:https://stackoverflow.com/questions/22335988/how-to-create-a-new-folder-for-downloading-a-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!