How to delete a file with javascript?

前端 未结 7 1151
栀梦
栀梦 2020-12-18 06:54

Did not have luck with these examples:
Javascript File remove
Javascript FSO DeleteFile Method
Deleting a File

There are no special permissions on the fi

7条回答
  •  一整个雨季
    2020-12-18 07:36

    Javascript is a client side language. So you are not able to delete file on server directly. All examples that you provide may be used only for deleting files on your local machine but not into server.

    But you may call some server page function that will delete file.

提交回复
热议问题