vote up 0 vote down star

I have 2 images inside a folder called Pics..... Image1.jpg and Image2.jpg.

What code must i place inside my Submit button to just delete Image1.jpg located here "~/Pics/Image1.jpg"

Any help would be great!!!

flag

71% accept rate

3 Answers

vote up 1 vote down check

You need to use System.IO.File.Delete not System.IO.Delete

string path = "~/Pics/Image1.jpg";
System.IO.File.Delete(Server.MapPath(path))
link|flag
Thanks for the reply, it does work. But what must i do in code to loop through all my images inside my Pics folder and then delete all the images that contains a 1 before the extension such as 1. – Etienne May 1 at 20:37
You can use something like System.IO.Directory.GetFiles("~/Pics", "*1.*") to return an array of matching files in that directory. Then you can loop through those files and delete each one. – Lance McNearney May 1 at 23:15
vote up 2 vote down

The syntax is:

System.IO.File.Delete(Server.MapPath("~/Pics/Image1.jpg"));

You will need to make sure the user your web app is running as has delete (change) permissions on the file you are deleting, however.

link|flag
How would i give such permissions? – Etienne May 1 at 20:33
It depends on your host's setup, but you will need to figure out which user your app is running as and change the permissions on the "Pics" folder on the disk. Usually this is done through some kind of control panel provided by your host. If you have terminal or physical access to the machine, you can right-click on the folder and visit the security tab to make these changes. – Jason Williams May 1 at 21:28
vote up 0 vote down

i would try:

String FilePath;
FilePath = Server.MapPath("~/Pics/Image1.jpg");
File.Delete(FilePath);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.