copy a file into another folder asp .net

copy a file into another folder asp .net

string targetFolder = Server.MapPath("~/PDF");
 System.IO.FileInfo fi = new System.IO.FileInfo(Server.MapPath("~/Bookmark.pdf"));
 fi.CopyTo(System.IO.Path.Combine(targetFolder, fi.Name), true);

You may also like...

Creating a Shopify App using Laravel How to Create Custom WordPress Plugin? How to Build a Telegram Bot using PHP How to Convert Magento 2 into PWA?