string OrignFile = Server.MapPath(".")+"\\myText.txt";string NewFile = Server.MapPath(".")+"\\myTextCopy.txt";File.Move(OrignFile,NewFile);直接Move过去就行了。