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

How to recover original Filename?

Enthusiast ,
Nov 13, 2016 Nov 13, 2016

Hi guys,

Having renamed a file I sometimes need to find out the original file name so as not to delete its master by mistake - if the renamed file is a copy, or if it's a master to a copy used elsewhere. I think you get my point.

Thanks a lot,

Raphael

7.8K
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 , Nov 13, 2016 Nov 13, 2016

In the Metadata panel there is a field below File Name called Original Filename.

It¨s visible when Metadata is set to Exif and IPTC.

Translate
Community Expert ,
Nov 13, 2016 Nov 13, 2016

In the Metadata panel there is a field below File Name called Original Filename.

It¨s visible when Metadata is set to Exif and IPTC.

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
Enthusiast ,
Nov 16, 2016 Nov 16, 2016

Indeed! Thanks a lot Per.

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 ,
Aug 29, 2024 Aug 29, 2024

You can create script for restoring Original filenames (it will recover it from metadata):
For script creation use text editor or code editor like "Visual Studio Code", paste code bellow and save it in .jsx format.

var selectedItems = app.project.selection;

for (var i = 0; i < selectedItems.length; i++) {
    var item = selectedItems[i];
    if (item instanceof FootageItem && item.file !== null) {
        var originalFilename = item.file.displayName;
        item.name = originalFilename;
    }
}

 
In After Effects do to File - Scripts - Run Script File - and open file script you just created.

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
Community Expert ,
Aug 29, 2024 Aug 29, 2024

This is not relevant to Lightroom Classic.

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 ,
Jun 04, 2025 Jun 04, 2025
LATEST
👍
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