Jump to content

[SOLVED] Changing a file name in a database?


Solarpitch

Recommended Posts

Hey guys,

 

I have a list of products in my database, about 2000 or so and they all have an image attached with it. The image path is in the format /imagename.jpg but I need to change them from a jpg to a gif.

 

Is there anyway I can change the ends of the filenames from .jpg to .gif across all 2000 products by running a script.

 

eg:

 

image1.jpg

image2.jpg

image3.jpg

 

........ run script

 

image1.gif

image2.gif

image3.gif

 

thanks

Edit: Basically the same as above ^^^

 

Assuming that the characters .jpg only appear once in any file name (you don't have anything like image123.jpg.jpg) and are always the same-case, then you can use the mysql REPLACE() function in an UPDATE query -

 

UPDATE your_table SET your_column = REPLACE(your_column, '.jpg', '.gif')

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.