i 想要问,如果想要将档案改名为javascript,那么我能做些什么? i 尝试一种功能,即在线查阅,但不能工作。
function ChangeFileName()
{
var fso, f;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFile("FilePath/MyFile.txt");
f.name = "MyFile.htm";
}
i 在线查询,它说,只有IE才能获得活性XObject,而且由于 mo虫有泡沫,它打算在 mo里使用。
beside this, is there any method that i can rename a file inside the javascript ? thanks in advance for your help .