YES, this is possible, the only thing you should observe is that the CopyTo path should be complete, not relative (ex: c: \ websites \ myOtherFolder ).
this way you can successfully copy / move the file from your ASP.NET code.
- , , (, ASP.NET).
using System.IO;
..
..
..
var currentApplicationPath = HttpContext.Current.Request.PhysicalApplicationPath;
var fullFilePath = currentApplicationPath + fileNameWithExtension;
var copyToPath = "This has to be the full path to your destination directory.
Example d:\myfolder";
File.Copy(fullFilePath , copyToPath );