Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Export with custom filename prefix?

Explorer ,
May 28, 2024 May 28, 2024

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.

TOPICS
Windows
543
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 29, 2024 May 29, 2024

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

 

Translate
Community Expert ,
May 29, 2024 May 29, 2024

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

 

-- Johan W. Elzenga
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 16, 2024 Nov 16, 2024
LATEST

 

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:

 

javascript
Copy code
 
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);
}
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines