How to Create a New Folder for Downloading a File

前端 未结 2 2003
逝去的感伤
逝去的感伤 2021-01-21 08:52

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 ht

相关标签:
2条回答
  • 2021-01-21 09:07

    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).

    0 讨论(0)
  • 2021-01-21 09:17

    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;  
    
    0 讨论(0)
提交回复
热议问题