asp利用fso实现文件的移动function movefiles(sFolder,dFolder) on error resume next dim fso set fso = server.createobject(“scr ipting.filesystemobject”) if fso.folderexists(server.mappath(sFolder)) and fso.folderexists(server.mappath(dFolder)) th
代码如下: using System; using System.IO; using System.Text; using System.Data; using System.Web.UI; using System.Web.UI.WebControls; namespace ec { /// /// 文件操作类 /// public class FileObj : IDisposable { private bool _alreadyDispose = false; #region 构造函