Batch rename files that have non consecutive numbers?

I have a folder with about 100 image files that have non consecutive numbers. Is there a way to rename them all to add something after the numbers (and before file type extension) without changing the numbers?
Example: If I select 111019.003.dng and 111019.007.dng, is there a way to batch rename to 111019.003_tk.dng and 111019.007_tk.dng?
Of course, simply batch renaming w/ a sequence number would change them to 111019.003_tk.dng and 111019.004_tk.dng. Which is no good.
I realize the easiest way around this is to name them correctly the first time, but I am not the photographer.
Hope this makes sense, and thanks.

You can bulk rename in Bridge IE:-

Similar Messages

  • Script to rename files that have similar names?

    Hi, folks.
    I have my  RAW files in one folder and my derivative images (e.g., PSDs, TIFFs,  JPEGs) in another.  The derivative files only share the last four digits  of the RAW file names (e.g., the RAW file is named 100826-14278.CR2 but  the JPEG version is only named 4278.JPG).  Also, the derivative files  have no metadata.
    Is there a way to use a script to match all the  derivatives to the RAW files based on the last four digits, then change their file names  to match the RAW names.  And, if that's possible, can Bridge then  cascade the metadata minus the camera data EXIF from the RAW files to  the derivative files?
    Thanks!
    -Greg
    P.S. My knowledge of scripting stops with cursive handwriting, so please be gentle.

    Thanks the coffee was great!
    Here is a new version with subfolder support. Just select the folders as normal and it will search derivitive subfolders.
    #target bridge  
    if( BridgeTalk.appName == "bridge" ) { 
    var newMenuData = new MenuElement( "menu", "Add_Metadata", "after Help", "myMetaData" );
    var newDataCommand = new MenuElement( "command", "Rename and Add Metadata", "at the end of myMetaData" , "zxcv" );
    newDataCommand.onSelect = function () {
       renamePutXMP();
    function renamePutXMP(){
    var win = new Window('dialog','Rename and Add Metadata');
    g = win.graphics;
    var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);
    g.backgroundColor = myBrush;
    win.alignChildren="row";
    win.g10 = win.add('group');
    win.g10.orientation = "row";
    win.title = win.g10.add('statictext',undefined,'Rename / Add Metadata');
    win.title.helpTip="Compliments of Paul";
    win.title.alignment="bottom";
    var g = win.title.graphics;
    g.font = ScriptUI.newFont("Georgia","BOLDITALIC",22);
    win.p1= win.add("panel", undefined, undefined, {borderStyle:"black"});
    win.p1.alignChildren="fill";
    win.g5 =win.p1.add('group');
    win.g5.spacing=10;
    win.g5.st1 = win.g5.add('statictext',undefined,'Raw Files');
    win.g5.st1.preferredSize=[100,20];
    win.g5.et1 = win.g5.add('edittext');
    win.g5.et1.preferredSize=[250,20];
    win.g5.et1.enabled=false;
    win.g5.bu1 = win.g5.add('button',undefined,'Browse');
    win.g10 =win.p1.add('group');
    win.g10.spacing=10;
    win.g10.st1 = win.g10.add('statictext',undefined,'Derivative Images');
    win.g10.st1.preferredSize=[100,20];
    win.g10.et1 = win.g10.add('edittext');
    win.g10.et1.preferredSize=[250,20];
    win.g10.et1.enabled=false;
    win.g10.bu1 = win.g10.add('button',undefined,'Browse');
    win.g15 =win.p1.add('group');
    win.g15.orientation='row';
    win.g15.alignment="top";
    win.g15.spacing=10;
    win.g15.bu1 = win.g15.add('button',undefined,'Process');
    win.g15.bu1.preferredSize=[200,30];
    win.g15.bu2 = win.g15.add('button',undefined,'Cancel');
    win.g15.bu2.preferredSize=[200,30];
    win.g5.bu1.onClick=function(){
         rawFolder = Folder.selectDialog("Please select the raw files folder",app.document.presentationPath);
         if(rawFolder !=null){
      win.g5.et1.text =  decodeURI(rawFolder.fsName);
    win.g10.bu1.onClick=function(){
         derivativeFolder = Folder.selectDialog("Please select the derivative files folder",app.document.presentationPath);
         if(derivativeFolder !=null){
      win.g10.et1.text =  decodeURI(derivativeFolder.fsName);
    win.g15.bu1.onClick=function(){
        if(win.g5.et1.text == ''){
            alert("No Raw folder selected!");
            return;
        if(win.g10.et1.text == ''){
            alert("No Derivative folder selected!");
            return;
        win.close(1);
        process(rawFolder,derivativeFolder);
    win.center();
    win.show();
    function process(rawFolder,derivativeFolder){
    var rawFiles = rawFolder.getFiles (/\.(cr2|crw|tif|jpg)$/i);
    if(!rawFiles.length){alert("There are no raw files to be processed!"); return;}
    var derivativeFiles=derivativeFolder.getFiles (/\.(jpg|tif|psd)$/i);
    if(!derivativeFiles.length){alert("There are no derivative files to be processed!"); return;}
    var folderList=[];
    getFolders(derivativeFolder);
    folderList.unshift (derivativeFolder);
    derivativeFiles=[];
    for (var a in rawFiles){
    var Name = decodeURI(rawFiles[a].name).replace(/\.[^\.]+$/, '');
    var fileMask = Name.match(/\d\d\d\d$/)+"*.*";
    var destFiles=[];
    for(var z in folderList){
    var destF = folderList[z].getFiles(fileMask);
    for(var s in destF){destFiles.push(destF[s])}
    for(var z in destFiles){
    var Ext = decodeURI(destFiles[z].name).replace(/^.*\./,'');
    var destName = decodeURI(destFiles[z].name).replace(/\.[^\.]+$/, '');
    destName.substring(4)
       destFiles[z].rename(Name+destName.substring(4)+"."+Ext);
    function getFolders(folder) {
        var fileList = folder.getFiles();
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
    if (file instanceof Folder) {
    folderList.push(file); 
            getFolders(file);
    $.sleep(300);
    for (var a in rawFiles){
    var Name = decodeURI(rawFiles[a].name).replace(/\.[^\.]+$/, '');
    fileMask = Name + "*.*";
    var destFiles=[];
    for(var z in folderList){
    var destF = folderList[z].getFiles(fileMask);
    for(var s in destF){destFiles.push(destF[s])}
    for(var z in destFiles){
        if(decodeURI(destFiles[z].name).match(/thm$/i)) continue;
    updateMetaData(rawFiles[a],destFiles[z])
    function updateMetaData(sourceFile,destFile){
    if (ExternalObject.AdobeXMPScript == undefined)  ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    sourceFile = new Thumbnail(File(sourceFile));
    destFile = new Thumbnail(File(destFile));
    var md = sourceFile.synchronousMetadata;
    var source = new XMPMeta( md.serialize() );
    var md2 = destFile.synchronousMetadata;
    var dest = new XMPMeta( md2.serialize() );
    try{
    copySchema( source, dest,XMPConst.NS_CAMERA_RAW,["RawFileName"]); 
    copySchema( source, dest,XMPConst.NS_EXIF,["PixelXDimension","PixelYDimension","ExposureTime","FNumber"]);
    copySchema( source, dest,XMPConst.NS_DC,[]);
    copySchema( source, dest,XMPConst.NS_XMP_RIGHTS,[]);
    copySchema( source, dest,XMPConst.NS_IPTC_CORE,[]);
    var updatedPacket = dest.serialize(XMPConst.SERIALIZE_OMIT_PACKET_WRAPPER | XMPConst.SERIALIZE_USE_COMPACT_FORMAT);
    destFile.metadata = new Metadata(updatedPacket);
    app.document.refresh();
    }catch(e){alert(e+" "+e.line);}
    function copySchema( source, dest, namespace, omitProps ) { 
    var propIter = source.iterator(XMPConst.ITERATOR_JUST_CHILDREN | XMPConst.ITERATOR_JUST_LEAF_NAME, namespace, "" );
    var prop = propIter.next();
    var prefix = XMPMeta.getNamespacePrefix( namespace );
    while(prop) {     
      var name = prop.path.substring( prefix.length );    
       if(omitProps != undefined) var copy = !contains( omitProps, name);
      if( copy ) {
                try{
       XMPUtils.duplicateSubtree( source, dest, namespace, prop.path,namespace, prop.path, 0 );       
                }catch(e){}
      prop = propIter.next();
    function contains( arr, member ){
    var r = false;
    for( var i = 0; i < arr.length &! r; ++i  ) {
      r = arr[i] == member;
    return r;

  • I cannot re-open files that have been saved in Numbers version09 - it states "You need a newer version of numbers to open this document". This is the latest version

    I cannot re-open files that have been saved in Numbers version09 - it states "You need a newer version of numbers to open this document". This is the latest version & also the one I have created/saved???

    Jules,
    You may delete Numbers 08 if you wish, but some folks like keeping it around. Close all your Numbers docs and Quit the Numbers app, and the other Numbers app if necessary.Then click the Numbers icon on your doc. Then select Numbers > About Numbers, and in the window that pops up, see which version it is. If the Dock icon started Numbers 08, you can cure that by dragging that icon off the Dock and letting it go in a puff of virtual smoke.
    Now, to put the Numbers 09 icon on the Dock, double-click one of those known Numbers 09 documents so that Numbers 09 starts up. Verify by checkig Numbers > about Numbers.
    Now click and hold the Numbers Dock icon and select the Option for Keep in Dock.
    Jerry
    Message was edited by: Jerrold Green1 -- I inadvertently posted about Pages rather than Numbers. Just corrected it.

  • Sedname - Batch rename files using sed

    Renaming files using sed is nothing new, but this script makes the process a little more friendly and adds a few features, including insertion of sequential numbers and a simulation mode.  The output of any find command can also be piped through sedname.
    sedname version 1.0.0
    Batch-renames files using a sed script
    Usage: sedname [OPTIONS] SEDSCRIPT FILE ...
    Usage: find [...] | sedname [OPTIONS] SEDSCRIPT
    Example: sedname 's/\(.*\)\.jpg/\1.jpeg/' *.jpg
    Example: find /mypics | sedname 's/\(.*\)\.jpg/\1.jpeg/'
    OPTIONS:
    --sim simulate only
    --dir rename directories too
    Use #D to insert a number with D digits forming a unique filename
    Example: sedname 's/thisname.*/thatname#3/' *
    ( changes thisname* to thatname001, thatname002, ... )
    Use #0 in replacement name to insert a number if needed
    Example: sedname 's/thisname.*/thatname#0/' *
    ( changes thisname* to thatname, thatname1, thatname2, ... )
    http://igurublog.wordpress.com/download … t-sedname/
    http://aur.archlinux.org/packages.php?ID=37707

    What does it have over zsh's zmv:
    # Remove illegal characters in a fat32 file system. Illegal characters are
    # / : ; * ? " < > |
    # NOTE: ``-Q'' and (D) is to include hidden files.
    $ unwanted='[:;*?\"<>|]'
    $ zmv -Q "(**/)(*$~unwanted*)(D)" '$1${2//$~unwanted/}'
    # Changing part of a filename (i. e. "file-hell.name" -> "file-heaven.name")
    $ zmv '(*)hell(*)' '${1}heaven${2}'
    # or
    $ zmv '*' '$f:s/hell/heaven/'
    # remove round bracket within filenames
    # i. e. foo-(bar).avi -> foo-bar.avi
    $ zmv '*' '${f//[()]/}'
    # serially all files (foo.foo > 1.foo, fnord.foo > 2.foo, ..)
    $ ls *
    1.c asd.foo bla.foo fnord.foo foo.fnord foo.foo
    $ c=1 zmv '*.foo' '$((c++)).foo'
    $ ls *
    1.c 1.foo 2.foo 3.foo 4.foo foo.fnord
    # Rename "file.with.many.dots.txt" by substituting dots (exept for the last
    # one!) with a space
    $ touch {1..20}-file.with.many.dots.txt
    $ zmv '(*.*)(.*)' '${1//./ }$2'
    # Remove the first 4 chars from a filename
    $ zmv -n '*' '$f[5,-1]' # NOTE: The "5" is NOT a mistake in writing!
    # Rename names of all files under the current Dir to lower case, but keep
    # dirnames as-is.
    $ zmv -Qv '(**/)(*)(.D)' '$1${(L)2}'
    # replace all 4th character, which is "1", with "2" and so on
    $ zmv '(???)1(???[1-4].txt)' '${1}2${2}'
    # Remove the first 15 characters from a string
    $ touch 111111111111111{a-z}
    $ zmv '*' '$f[16,-1]'
    # Replace spaces (any number of them) with a single dash in file names
    $ zmv -n '(**/)(* *)' '$1${2//( #-## #| ##)/-}'
    # or - with Bash
    $ find . -depth -name '* *' -exec bash -c '
    > shopt -s extglob
    > file=$1
    > dir=${file%/*}
    > name=${file##*/}
    > newname=${name//*([ -]) *([ -])/-}
    > mv -i -- "$file" "$Dir/$newname"' {} {} \;
    # Clean up file names and remove special characters
    $ zmv -n '(**/)(*)' '$1${2//[^A-Za-z0-9._]/_}'
    # Add *.py to a bunch of python scripts in a directory (some of them end
    # in *.py and give them all a proper extension
    $ zmv -n '(**/)(con*)(#qe,file $REPLY | grep "python script",)' '$1$2.py'
    # lowercase all extensions (i. e. *.JPG) incl. subfolders
    $ zmv '(**/)(*).(#i)jpg' '$1$2.jpg'
    # Or - without Zsh
    $ find Dir -name '*.[jJ][pP][gG]' -print | while read f
    > do
    > case $f in
    > *.jpg) ;
    > *) mv "$f" "${f%.*}.jpg" ;
    > esac
    > done
    # remove leading zeros from file extension
    $ ls
    filename.001 filename.003 filename.005 filename.007 filename.009
    filename.002 filename.004 filename.006 filename.008 filename.010
    $ zmv '(filename.)0##(?*)' '$1$2'
    $ ls
    filename.1 filename.10 filename.2 filename.3 filename.4 filename.5 ..
    # renumber files.
    $ ls *
    foo_10.jpg foo_2.jpg foo_3.jpg foo_4.jpg foo_5.jpg foo_6.jpg ..
    $ zmv -fQ 'foo_(<0->).jpg(.nOn)' 'foo_$(($1 + 1)).jpg'
    $ ls *
    foo_10.jpg foo_11.jpg foo_3.jpg foo_4.jpg foo_5.jpg ...
    # adding leading zeros to a filename (1.jpg -> 001.jpg, ..
    $ zmv '(<1->).jpg' '${(l:3::0:)1}.jpg'
    # See above, but now only files with a filename >= 30 chars
    $ c=1 zmv "${(l:30-4::?:)}*.foo" '$((c++)).foo'
    # Replace spaces in filenames with a underline
    $ zmv '* *' '$f:gs/ /_'
    # Change the suffix from *.sh to *.pl
    $ zmv -W '*.sh' '*.pl'
    # Add a "".txt" extension to all the files within ${HOME}
    # ``-.'' is to only rename regular files or symlinks to regular files,
    # ``D'' is to also rename hidden files (dotfiles))
    $ zmv -Q '/home/**/*(D-.)' '$f.txt'
    # Or to only rename files that don't have an extension:
    $ zmv -Q '/home/**/^?*.*(D-.)' '$f.txt'
    # Recursively change filenames with characters ? [ ] / = + < > ; : " , - *
    $ chars='[][?=+<>;",*-]'
    $ zmv '(**/)(*)' '$1${2//$~chars/%}'
    # Removing single quote from filenames (recursively)
    $ zmv -Q "(**/)(*'*)(D)" "\$1\${2//'/}"
    # When a new file arrives (named file.txt) rename all files in order to
    # get (e. g. file119.txt becomes file120.txt, file118.txt becomes
    # file119.txt and so on ending with file.txt becoming file1.txt
    $ zmv -fQ 'file([0-9]##).txt(On)' 'file$(($1 + 1)).txt'
    # lowercase/uppercase all files/directories
    $ zmv '(*)' '${(L)1}' # lowercase
    $ zmv '(*)' '${(U)1}' # uppercase
    # Remove the suffix *.c from all C-Files
    $ zmv '(*).c' '$1'
    # Uppercase only the first letter of all *.mp3 - files
    $ zmv '([a-z])(*).mp3' '${(C)1}$2.mp3'
    # Copy the target `README' in same directory as each `Makefile'
    $ zmv -C '(**/)Makefile' '${1}README'
    # Removing single quote from filenames (recursively)
    $ zmv -Q "(**/)(*'*)(D)" "\$1\${2//'/}"
    # Rename pic1.jpg, pic2.jpg, .. to pic0001.jpg, pic0002.jpg, ..
    $ zmv 'pic(*).jpg' 'pic${(l:4::0:)1}.jpg'
    $ zmv '(**/)pic(*).jpg' '$1/pic${(l:4::0:)2}.jpg' # recursively
    (from zsh-lovers)
    Edit: tried it now, and had to remove this silly block to make it let me use alternate delimiters:
    if [ "${sedscript:0:2}" != "s/" ]; then
    echo "Invalid sed script: $sedscript" > /dev/stderr
    exit 1
    fi
    Last edited by JohannesSM64 (2010-05-31 15:29:44)

  • Batch rename files

    How can I batch rename files to original (embedded in metadata) file names?

    If you are saying that your photos have their original filename stored as the DocumentName field in the EXIF metadata, you can use the free ExifToolGUI:
    http://www.softpedia.com/get/PORTABLE-SOFTWARE/Multimedia/Graphics/Portable-ExifToolGUI.sh tml
    It requires the free ExifTool:
    http://www.softpedia.com/progDownload/ExifTool-Download-90656.html
    ExifToolGUI allows you to rename files using that DocumentName field -- just be sure the extension is included.
    Added:
    I just installed those latest versions, and there isn't the file renaming option any more.
    Can probably be done by setting up an ExifTool commandline, but I haven't experimented with that yet.
    Ken
    Message was edited by: photodrawken to add more info.

  • Rename/Batch Rename files

    I use PSE 5.
    I name all my images before I import them into Organizer. Here is an example: 2007-11-01 071500 Bolsa Chica pelican -- meaning this picture of a pelican was taken November 1, 2007 at 7:15AM. I may have a dozen or more images of pelicans from that day, but taken at different times obviously. If I would like to rename/batch rename these files to indicate brown pelicans instead of just pelicans, can I do it within the program and still retain the date and the different times for images?
    I can't find a way to do it. And I've searched this site as well as The Missing Manual. I've been using PSE since Ver. 3, but have always used another program to batch rename files. I'm guessing Adobe expects users to rely on tags, otherwise they would have a more "sophisticated" batch rename capability.
    But am I missing something about batch renaming? Sorry for the very long post . . .
    Wendell

    I have several bones to pick with PSE5's file rename ability (in Organizer, go to File, Rename), primarily the 30-character limit on new names.
    I use long file names like
    2007-11-11 Al and Nadia wedding NYC roses-1.jpg
    2007-11-11 Al and Nadia wedding NYC roses-2.jpg
    2007-11-11 Al and Nadia wedding NYC Peter and Julie.jpg
    The spaces make for easier legibility to humans.
    If I were to include these files in a web address, I'd use hyphens.
    For this past Thanksgiving I toiled over the metadata in a group photo that might become important for family history, adding title, caption, keywords, date. I found that the "Save for Web" dialog strips some or all of the metadata, and other programs might or might not read or preserve the metadata.
    A number of people who receive my photos cannot readily use the metadata:
    --Naive users (gram and gramps)
    --Busy and distracted users (the niece who is a mother of 3; the day-trader who's thinking about his puts and calls)
    --People with poor support (a friend who has some sort of Photoshop Starter edition at work that does not recognize keywords; and she can't justify even Photoshop Elements)
    Even among all these folks, almost no one is using an operating system that requires short names.
    So, I put an abundance of information into my file names. Photoshop Elements allows that ON IMPORT, but not after the fact IN THE ORGANIZER.
    I just hope that this inconsistency is fixed in PSE6. I get tired of explaining this over and over again to folks.
    -- Bob
    P.S. I love Photoshop Elements, but I'm looking into moving my picture store to my MacBook Pro, and using Bridge (already installed) and GraphicConvert to manage my photos.

  • Custom batch rename files with Aperture 3 in the following format: IMG_0023.cr2 to Smith_YYMMDD_0023.cr2?  I cannot find a way to structure the date in Aperture as such, as well as extract only the camera file

    Please advise how to custom batch rename files with Aperture 3 in the following format: IMG_0023.cr2 to Smith_120816_0023.cr2?  I cannot find a way to structure the date in Aperture as such (YYMMDD), as well as extract only the camera file (0023, for example).  Adobe Bridge CS5 can do this, but NONE of the Adobe software is retina optimized, and is terrible to look at.

    In Aperture you are limited to renaming files by the entries in the File Naming preset window.
    At what point are you looking to rename, import or export? It might be possible to do what you are looking to do external to Aperture either via a script or other software.
    regards

  • Batch rename files on the server?

    Can someone explain how to batch rename files on the server ?
    I have 1000 rows each containing these fields
    id (unique key)
    productCode
    filename1
    filename2
    For every row I need to rename the following fields:
    Rename [filename1] to [productCode]_[id]_1
    Rename [filename2] to [productCode]_[id]_2
    also I need to rename the actual file on the server using the above scheme
    Can someone show me the way ? I'm a little rusty with ColdFusion

    So far I've got everything working apart from CFFILE which works only if it finds a corresponding jpeg file on the server. In other words it works perfectly until row 20 of the database because the filename contained in the field doesn't have a matching jpeg file on the server, so CFFILE fails like this...
    Attribute validation error for tag CFFILE.
    The value of the attribute source, which is currently C:\images\DSCN1293.JPG, is invalid.
    The error occurred in C:\Inetpub\wwwroot\link\htdocs\old_apps\psp\updater.cfm: line 63
    61 :                    action = "rename"
    62 :                    source = #my_source1#
    63 :                    destination = #my_destination1#>
    is there a way to carry on looping through the remaining rows and ignore the above fail ?

  • Batch Renaming Files

    Greetings,
    Is there a way to "Batch Rename" a group of files?
    For example, I might want to rename dog.gif, cat.gif,
    rat.gif, etc. to animal01.gif, animal02.gif, animal03.gif, etc.
    Thanks,
    folsombob

    folsombob wrote:
    > I don't have a problem batch renaming files outside of
    DW. If I do, though, I
    > will break all of the links and references.
    There is no way of batch renaming files and preserving links
    and references.
    However, you can rename one file at a time in the Files
    panel, and
    Dreamweaver will automatically update the links throughout
    the site.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • I have files that have been on my computer for over a year and all of a sudden they wont open and an error message comes up saying they were improperly downloaded or came in an email attach which is not the case

    I have files that have been on my computer for over a year and I have used them several times and all of a sudden they wont open.  I received an error message saying they are improperly downloaded or came as an email attachement which is not the case.  Please advise

    They seem to be word files - they will open if I choose "open with" microsoft word, but if I double click they don't open they are appearing as PDF on my screen.  I even opened one and then tried to "save as" making sure I chose .doc and they still appear as PDF
    I just created a new document response.doc in word and when I saved to my desktop it appears as a PDF file and I absolutely did not create a PDF or save as PDF it was a simple word
    doc.
    The message says "Adobe reader could not open response.doc because it is either not a supported file type or because the file has been damaged (for example attached in an email and not properly decoded)
    The reader version is I believe the most current, I always update when prompted.  OS is Windows 8

  • I have m4v files that have subtitles and sound options they play fine on my computer in itunes and but  when i watch them on my apple tv there is video but no sound ... why ?

    I have m4v files that have subtitles and sound options they play fine on my computer in itunes and but  when i watch them on my apple tv there is video but no sound ... why ? all my other videos are fine and they in mp4 format.

    Mov is a container format, you'd need to look at the codec used by the movie file inside the container to know whether it will work with the Apple TV or not.

  • Batch rename files preserving the original file name in metadata

    How can I batch rename files while preserving the original file name in metadata? (Don't want the old file name as part of the new file name)
    (Adobe CS Bridge can do this with some success, but I don't want to be dependant on this software. Results are inconsistent.)

    With a simple terminal script. More details needed, though.

  • Import does not recognize old image files that have no extension

    Just discovered that the import facility does not see (or accept) old Mac image files that have no extension -- even if these files have a Mac "kind" that is an image such as "Adobe Photoshop file".
    You can manually add an extension to the file (and respond to an "are you sure?" dialog). Then the file will be seen and accepted.
    This is extremely dangerous (and painful to manually correct) since you think you are seeing all images in the import box, but you are not.
    In fact, I deleted huge image directories after having satisfactorally (I thought) imported them into Aperture many months ago. Most of the old extension-less files had been updated and did have extensions in later versions. However, I missed one important image and looked everywhere for it.
    By a miracle I had a backup of my image directories on a Power Book that I am retiring and finally noticed that the missing image was there just before deleting that directory too! I then figured out why this image (and many others) had not been imported. So, now I am going through manually and adding extensions.
    Does anyone know a better way -- to get Aperture to recognize extension-less images? If not, this needs to fixed in the next version as it is a disaster waiting to happen.
    Tom
    Dual 2.7Ghz G5 ATI Radeon X800 XT 2.5 GB ram   Mac OS X (10.4.6)  

    Well there's an idea...probably would need to go into Bridge <g> to do that most efficiently .. or Automator.
    It turns out that I already had added extension to most (but not all) images in my main image directory and so they got into Aperture alright. I just have to go through all the images in the backup I just found (where many did not get extensions) to find the ones that Aperture missed. So far, there have been just a couple more...
    The real problem is that Aperture should not be missing these, even if they are archaic. At the very least, Aperture's import should give a warning that there are files in a folder that it is not going to import AND is not even showing. Otherwise this is a serious gotcha!
    Tom

  • Is there any easier way to edit imovie files that have been exported as mov file then added to FCE 4?? As every move I make has to be rendered and takes forever??? Also my recording is going out of focus without me touching the camera, why has this happen

    Is there any easier way to edit imovie files that have been exported as mov file then added to FCE 4?? As every move I make has to be rendered and takes forever??? Also my recording is going out of focus without me touching the camera, why has this happened any idea what causes this??
    iMovie '08, Mac OS X (10.5.8), FCE 4

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Why can't the finder in Mountain Lion 10.8.2 find files that have successfully downloaded, or that other programs can find?

    Why can't the finder in Mountain Lion 10.8.2 find files that have successfully downloaded, or that other programs can find?
    This happens with maybe 1 out of 5 files. These are files that have either an ."aa" extention, or or are libraries that icloud can see, but finder can't.

    Files beginning with a period are invisible and library files are system files. Spotlight cannot find either unless configured to do so (btw, this is not a Finder issue but a Spotlight issue.)
    Get Spotlight to search system files (and more)
    Enter the search term in the Finder window's search field.
    Click the [+] button in the search bar to add a search option.
    In the first drop down menu choose Other.
    Choose “System Files” from the list that pops up (and check the box to place in drop down menu to avoid this step later,) click on the OK button.
    Now back in the Finder choose Include from the second drop down menu.

Maybe you are looking for