Is it possible to 'batch delete' images?

When I delete an image I also move it to the trash. This works fine for one image by just selecting it or having it be the image displayed and then hit the delete key, then choose 'move to trash' in the dialog box that comes up.
When I try this for images I've selected in a group, by command selecting several, or selecting and then shift-selecting the last in a sequence of contiguous images, when I hit the delete key the dialog box comes up and I select 'move to trash' but none of the images get deleted - I have to go back and select and individually delete the images.
Shouldn't I be able to delete more than one image at one time?
TIA,
Ken

How nice of you JW Stephenson, for that complete answer. I would hope that the first things that are done to bring Lightroom into full maturity is to iron out some of the question mark behaviors, like not being able to select in filmstrip but having to select in grid mode. I would think that 'normal' behavior would be that visible images are selected and then processes like 'deleting all of the selected' would be applicable in either filmstrip or grid mode.
Your help is greatly appreciated,
Ken

Similar Messages

  • Is it possible to batch delete emails on my iphone?

    If I wish to delete more than one message(email) on my iphone at a time is there a way to do this?

    Just highlight each email you want to delete(after tapping "Edit"), then hit delete.

  • Where is it possible to batch process the size of images?--I am able to change pixel dimensions in image processor but not image size in inches.

    Hi- I need to batch process images for video project.  I am able to change the pixel dimensions in the image processor but don't seem to have the option to change image size in inches.  Please advise!  Thanks

    You don't need inches for video (or screen viewing in general). It all goes by pixel count. Inches is for print, nothing else.
    But to answer the question, you can run actions in the Image Processor, and this is where you set size in inches. Just bring up Image Size, uncheck "resample image", and specify size. You'll notice resolution changes to reflect the fact that the existing image pixels are now redistributed over the new print size.
    But again, screen doesn't care about size or resolution. It only counts pixels.

  • Is batch delete not possible for order details

    Hi,
    Cant we delete order details records using batch delete???If so is it enabled in R17??
    Thanks in advance,
    Ashan.

    Hi
    What do you mean by Order? this is not SCOD entity.
    In case meaning is custom object, there is no batch delete functionality in R16, as far as I know nor in R17.
    you can use Web Service to do it.
    Guy

  • Deleting images on ipad

    I am not sure I understand how ipad treats images based on where they have come from i.e. taken by ipad or copied from a PC/MBP, downloaded from the net directly onto the ipad. There are a few 100 images on my ipad now and I am trying to organize them into albums. I tried to follow the steps/guidelines provided in the ipad manual, but not one step written there matches with what I see on the ipad.
    1. Some albums are deletable, some are not: When I select the 'Albums' tab and then click 'Edit', some albums show an 'x' in a black circle at their top left corner, some do not. Is the 'x' to be clicked to delete an album? If yes, how do I delete the other albums which do not have an 'x' on them. If not, what is the process to delete an album. (Note: As per ipad manual, to delete an album, Tap edit and then Tap a '-' in a red circle, however I do not see the red circle on clicking edit)
    2. Same question as above, but now at an image level. Some images are deletable, some are not: From the 'Photos' view (or even while viewing photos from inside an album), some images have the trash can at the top right, whereas some do not. How do I delete images that do not have the trash can.
    Beyond the above items, I have a larger question on the usage of the term 'Syncing'. How do I transfer/copy images from my MBP to the ipad (i mean transfer, and not sync). And after transfering them, I usually edit/reorganize images in the ipad. Next time when I connect my MBP to the ipad, I want to be able to choose what I transfer from the MBP to the ipad (or vice versa). I dont want iTunes to automatically sync the two devices to their earleir state, and hence undo all the changes I made in the images in my ipad. Is this possible? How do I do it.

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
    These links may be helpful.
    How To Create Photo Albums http://tinyurl.com/cxm4eoq
    How to Add New Albums in the Photos App on the iPad & Add Photos to the Album
    http://tinyurl.com/7qep7fs
    Another way to import. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • How to delete images from folder which are not in the database

    I am created windows form
    i wont to delete images from the folder where i have stored images but i only want to delete those images which are not in the data base.
    i don't know how it is possible . i have written some code
    private void button1_Click(object sender, EventArgs e)
    string connectionString = "Data Source";
    conn = new SqlConnection(connectionString);
    DataTable dt = new DataTable();
    cmd.Connection = conn;
    cmd.CommandText = "select * from tbl_pro";
    conn.Open();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    int count = Convert.ToInt32( dt.Rows.Count);
    string[] image1 = new string[count];
    for (int i = 0; i < count; i++)
    image1[i] = dt.Rows[i]["Image1"].ToString();
    string[] image2 = new string[count];
    for (int i = 0; i < count; i++)
    image2[i] = dt.Rows[i]["Image2"].ToString();
    var arr = image1.Union(image2).ToArray();
    string[] arrays;
    String dirPath = "G:\\Proj\\";
    arrays = Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    int b= arrays.Count();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    var del = arrays[j].ToString();
    else
    foreach (var value in del) // ERROR DEL IS NOT IN THE CURRENT CONTEXT
    string filePath = "G:\\Projects\\Images\\"+value;
    File.Delete(filePath);
    here error coming "DEL IS NOT IN THE CURRENT CONTEXT"
    I have to change anything .Will It work alright?
    pls help me
    Sms

    Hi Fresherss,
    Your del is Local Variable, it can't be accessed out of the if statement. you need to declare it as global variable like below. And if you want to collect the string, you could use the List to collect, not a string.  the string will be split to chars
    one by one.
    List<string> del=new List<string>();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    del.Add(arrays[j].ToString());
    else
    foreach (var value in del)
    string filePath = "G:\\Projects\\Images\\" + value;
    File.Delete(filePath);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to delete images or photos from Photostream

    Is it possible to delete images or photos in Photostream? If yes, how to proceed?

    How do I delete photos from my Photo Stream in iCloud?
    Individual photos cannot be deleted from your Photo Stream. You can, however, delete all the photos in your Photo Stream by clicking the Reset Photo Stream button in your account at icloud.com. The Reset Photo Stream button will instantly delete all Photo Stream photos stored in iCloud, but it will not remove any Photo Stream photos that have already been pushed to your devices.
    How do I delete photos from my Photo Stream on my devices?
    After deleting the photos from your Photo Stream in iCloud, you can remove the Photo Stream photos from your devices as follows:
    On your iOS devices, go to Settings > iCloud > Photo Stream and turn Photo Stream off. This will delete all the photos from your Photo Stream album. If there are any photos you want to keep on your device, make sure to add them to an album or save them to your Camera Roll first.

  • Ways to "Batch  delete"

    Doing an Xmas clear out of old unwanted images (zero or 1 star in this case) so after using a smart set to identify them, I thin marked them as "rejected"
    Trouble is they span many directories. Is there any way to "batch delete" them without having to go to each directory in turn to delete them?
    (does anyone know WHY we cannot make changed like this from within smart sets? I can't understand the limitation)
    Thanks in advance
    edward

    To delete from within a Collection/Smart Collection use the Cmd/Ctrl+Shift+Option/Alt+Delete key combination

  • Can I batch convert images in a folder hierarchy?

    I can't seem to be able to create an Action or Droplet in Photoshop CS5 that will batch convert images in situ in a hierarchy of folders. In the Photoshop Actions you have to specify an explicit destination, and there's no "save back to the same place" option that I can find.
    I used to be able to do this with ImageReady CS2, but Tiger is going to kill that. Help!

    If you want to give it a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4 or /Applications/Utilities/Adobe Utilities-CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    // 2011, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    // get document-path and -name; thanks to xbytor;
         var myDocument = app.activeDocument;
         var myDocName = myDocument.name.match(/(.*)\.[^\.]+$/)[1];
         var myPath = myDocument.path;
    // save for web options;
         var webOptions = new ExportOptionsSaveForWeb();
         webOptions.format = SaveDocumentType.COMPUSERVEGIF;
         webOptions.optimized = true;
         webOptions.colorReduction = ColorReductionType.ADAPTIVE;
         webOptions.dither = Dither.NONE;
         webOptions.quality = 100;
         webOptions.includeProfile = true;
         webOptions.matteColor = new RGBColor();
         webOptions.matteColor.red = 255;
         webOptions.matteColor.green = 255;
         webOptions.matteColor.blue = 255;
    // export;
         myDocument.exportDocument(new File(myPath+"/"+myDocName+".gif"), ExportType.SAVEFORWEB, webOptions);
    Edit:
    The Script could be recorded into an Action.
    It would also be possible to create a Script that offers a dialog for File- or Folder-selection and subsequently operates on all selected/contained files of specified formats, but that would be a different approach from the Droplet.

  • Face Metadata accessible and/or can it be batch deleted?

    Is there there a way access and/or batch delete "Face" data? Many of my old (pre-digital) photos are scanned from the originals in photo albums. I also have taken a digital photograph of each album page to keep in Aperture for reference. I don't want face detected on those photos (of album pages). It seems the faces (named or un-named) on these photos can only be deleted one at a time. I would like to be able to select all these photos (of album pages) and simply delete all faces. Is this possible?
    On a related note, is it possible to display the named faces in a meta-data field (it appears not). Aperture seems to treat "face" meta-data as a special type of meta-data that isn't accessible. Please tell me that I am wrong!
    Thanks,
    Dave

    I think my best option is to export the photos that I don't want to have Face data into a separate library, then delete them from my main library. At least they won't show up when I search Faces in my main library.
    That looks like a good idea.
    After you export the library with the unwanted "Faces", make a backup of the library. Then try to delete the Faces database inside. quit aperture, if it is running.
    Crtl-click (or right click) the library with the Faces.
    Select show Package contents.
    in the window that opens, delete the folder  Database/Faces/ und the file Database/apdb.Faces.db
    Close the window. Launch aperture again on the modified library. all Faces should be gone.
    Now delete the project with the unwnted faces from your main library and import the  library without faces.
    The Faces folder
    The faces.db

  • Batch delete the JPEG's from all my RAW/JPEG pairs?

    What's the best way to batch delete the JPEG's from all my  RAW+JPEG pairs?
    I have a 88k image library many of which are RAW+JPEG pairs.  I've got about 50GB's left on my 2TB internal hard drive and need to free up space.  I'm combing through the years worth of data attempting to clean it all up but I thought dumping the JPEG's would be a quick and easy gain.  Can anyone thing of a safe way to do this?  Creating an album of all my pairs is easy enough but I can't find a "delete JPEG" option.
    Thanks!
    -Jared
    www.rogersglobal.com

    Again, another untested idea for you. You should try it with one image first and Please! make sure your library is backed up first.
    Select the Photos group from the Library pane to show all photos in the browser.
    Set your view to Browser only.
    Clear any filters in the top right if they are set.
    Click the Filter icon at the top right.
    If it's not already there, add the rule for "File Type" using the popup menu.
    Set the filter to show Filetype Is RAW+JPEG.
    You are now looking at all of your RAW+JPEG pairs in your entire library.
    Make sure all the images are set to RAW as Master.
    Select all the photos (test just one first!) and File->Relocate Masters. Choose an external disk with enough room.
    Once all the masters are moved out of the library to a new location (this could take awhile if you have many photos), Navigate to the new location of the masters and remove the JPEGs. Sort by filetype in the Finder to make it easier.
    Back in Aperture, Select all the RAW+JPEG pairs in the filtered browser and choose File->Consolidate Masters. (Now that the JPEGs are gone, I don't know if Aperture will complain. That's why you should test this first on 1 image)
    If this worked, you should now have only RAW masters in your library.
    I repeat myself: I didn't test this. Please test on a fully backed up library on only 1 image first. Good luck.

  • IPhone 4 - deleted images, after got low memory error msg rcvd, but available memory has not increased!!

    I have an iPhone 4 16GB. Was recording a video the other day, and got this msg: "Warning: You are running out of disk space. Please delete some photos or videos". Ok, so I had like 5,000+ images in my "camera roll", don't have any other folders. ALOT were from the Internet, when I would hold down on an image, and pick "save image". So, using common sense, I went into camera, under camera roll, then hit arrow icon in bottom left corner, and proceeded to check mark images. Once I had a group, I'd hit delete. I did this several times, until I was left with only about 1/2 the amount of images, which was about 3,000. I rebooted my iphone. I then went into settings> general> about, and looked under available, which still showed only about 100MB available out of 14GB. How is this possible? Now, when I go into camera, the lense won't even open, and I keep getting the same error msg. Maybe 3,000 is still alot, but remember, I had almost 6,000 images before, with NO problems till just a few days ago. So, how do I get my iPhone available memory back, if already deleted images, as instructed???

    You need to connect the iPhone to the computer and import those photos to the computer. Photos are not really supposed to be stored in the camera roll as it can cause problems, as you have already seen. Also, should the iPhone crash, you could lose all of the photos without having a backup of them. Once you have downloaded all the pictures, you should be able to go into Explorer and delete everything out of that folder. Then reset the iPhone and it should clear the memory. The iPhone is probably holding the memory because the Library hasn't updated. A sync would help as it tends to reset things. I've read of other issues with keeping too many photos in the camera roll and issues with saving from the Internet as well, however much of that was in earlier versions of iOS. I believe that has been corrected.
    Once you have imported the photos and deleted them from the camera roll, you can sync them back through iTunes in the Photos tab if you want them on the phone.

  • How to delete deleted images from external HD?

    I have an Aperture vault on an external HD.
    I've noticed that when you delete files from your library, a folder is created on the external HD with the deleted files. The name of the folder is "Vault Name Deleted Images".
    When I delete these files it's because I don't want them any longer and to free some space on the external HD, so keeping them in this folder is not necessary. Is it ok to just delete this folder or is there a better and safer way to do this?
    Thanks!

    Unfortunately I can't find any folder called "deleted images" in Aperture, or anywhere through Finder.
    I would like to delete pictures from my hard drive when I delete them from Aperture's library. Is that possible?
    So far command-delete only removes them from the library.
    Thanks so much!

  • Batch Delete Custom Objects?

    Is this possible yet? Specifically for Custom Object 2. I am an administrator and have all access/privliges, but there is not a Batch Delete option when creating a list of Custom Object 2's.

    Batch Delete is supported for Accounts, Contacts, Opportunities, Leads, Service Requests and Activities.

  • In Bridge CS6, the "Tools" tab is missing the "Photoshop" option to batch process image

    Hello!
    Does anyone know why in Bridge cs6 under the "Tools" tab, my "Photoshop" option is missing?  That is how I have always batch processed images.  In Bridge, I choose the images to process, go to the "Tools" tab, down to the "Photoshop" option then to "Image Processor" and process.  Now when I go into my "Tools" tab it only has the options: Batch Rename, 4 kinds of Metadata related options and Cache.  Can someone tell me why this has happened and how to fix it?  Thank you!!!
    Eric

    Hello Omke,
    This problem lasted for two days.  I tried many suggestions but nothing worked immediately.  Suddenly I turned my computer on last night and it was fixed...inexplicably.  Not sure what worked but something did.  I appreciate you taking the time to offer advice. 
    Best,
    Eric

Maybe you are looking for

  • How can I merge my iCloud accounts into one account without losing data?

    How can I merge my mistake iCloud accounts into one account without losing all my info?

  • Should I see photos and other images on iPad Notes ?

    Using OS X Mountain Lion. I use Notes to keep all sorts of stuff including photos and snippits (clipped from web). The notes sync to my iPad via iCloud but I can't see the images - just a paperclip which does nothing. Am I demanding more from IOS Not

  • Project Server 2013 - "An unknown error has occured"

    Hi ! Whenever I navigate to Project Center in Project Server 2013 the credentials window pops-up continuously even after entering correct admin account and after several clicks on OK button in credential window it says "An unknown error has occurred"

  • Oracle listeners

    Hi i'm new to this forum. Recently i installed oracle 11.2.1 on OL 6. I did install it successfully, but i need it to listen to different ip. I opened up the network manager netmgr.. and changed my listener to listen to the local ip of the computer (

  • Logic to check all the checkboxes in the o/p screen

    Hi, In the o/p screen there are about 20 records.Besides each record there is a checkbox.There are 2 pushbuttons on the top of the screen(checkall and uncheckall).When the user clicks on the checkall pushbutton,all the checkboxes should be checked.Si