Copy link to clipboard
Copied
Hi, all. I am using the new desktop LR (Local) to cull and do RAW edits. I would like to have my edited files exported with the suffix of edit_(filename). I'm guessing at this point the answer is no, but is there a way to do this? Right now, I am exporting to PS and giving the name I want there, but it would save time to be able to add the edit_ prefix within LR.
Thanks.
You can't rename the originals in Lightroom, but when you export an image you can give the exported image a different name. https://helpx.adobe.com/lightroom-cc/using/save-share-photos.html
Copy link to clipboard
Copied
You can't rename the originals in Lightroom, but when you export an image you can give the exported image a different name. https://helpx.adobe.com/lightroom-cc/using/save-share-photos.html
Copy link to clipboard
Copied
The Export for Screens feature in Illustrator defaults to the last used prefix, which can be frustrating. Unfortunately, there’s no built-in way to use the file name as the prefix automatically, but you can use a simple script to handle this:
var doc = app.activeDocument;
var docName = doc.name.replace(/\.[^\.]+$/, '');
var destFolder = Folder.selectDialog("Select folder for export");
if (destFolder) {
var exportOptions = new ExportOptionsPNG24();
exportOptions.artBoardClipping = true;
var filePath = new File(destFolder + "/" + docName + "_");
doc.exportFile(filePath, ExportType.PNG24, exportOptions);
}
Find more inspiration, events, and resources on the new Adobe Community
Explore Now