关于一个文件移动的问题
原代码如下:
<html>
<head>
<title>创建文件</title>
</head>
<body>
<p>正在写入文件</p>
<%
dim fso,txtfile,afile
set fso=server.createobject("scripting.filesystemobject")
set afile=fso.getfile("c:\asp\sintdat.dat")
afile.move "c:\aaa.dat"
%>
</body>
</html>
提示12行有错误,说没有权限
我把sintdat.dat文件里面的只读属性开去掉了,而且在其他的机子上能运行,就是在我的机子上不能,请问这是什么原因