我正在尝试使用JavaScript将文件从一个目录移动到另一个目录。 我已经尝试过以下代码......
function moveFile(){
var object = new ActiveXObject("Scripting.FileSystemObject");
var file = object.GetFile("C:\\wamp\\www\\phptest.php");
file.Move("C:\\wamp\\");
document.write("File is moved successfully");
}
...产生此错误:
未捕获的ReferenceError:未定义ActiveXObject
我正在使用不支持ActiveX的Chrome。
我还尝试了IE-tab和enabling ActiveX features,但没有成功。 是否有另一种方法可以将文件从一个目录移动到另一个目录,以便它仍可以使用Chrome?
谢谢!