File listing within a folder of images

When I scan old film to create digital files, I put them in a folder with the file name ending in a sequential number ( 1, 2, 3, etc).  Sometimes, when I open the folder to work on the image files in Photoshop Elements 11, I find the files list in the proper sequential order, but other times, especially when I have recently had some files open, the files will be listed in the order that I last opened them.  How can I force PSE 11 to always list them in numerical order upon opening the folder?
Robert Carney

No, you were clear. In PSE11, the files are displayed in the common 'date taken' order (chronological) which is not the alphabetical order you gave to your photo files.
That alphabetical sort order was present up to PSE10 in folder view only.
It was dropped in PSE11, so the workaround was the one I indicated.
In PSE12, the alphabetical filename order has been restored, not only in folder view, but in all views, thumbnail view, import batch...

Similar Messages

  • Java does not get file list from shared folder in another server.

    Hi,
    I'm using java 1.4.2.16,
    Command below does not get file list.
    import java.io.;*..
    File file = new File("\\\\10.242.22.28\\SapMII");
    File[] files = file.listFiles();
    SapMII folder is Everyone full Control permission.
    How can i solve this problem?
    Thanks.

    Could you please post replies in a more helpful way? Just informing me that it was an NPE doesn't really tell me anything. Post the stacktrace (Exception#printStackTrace()). And the listFile() methods API has this to say:
    Returns null if this abstract pathname does not denote a directory, or if an I/O error occurs.I'm able to run this sample code easily:
    import java.io.File;
    public class TestFileList {
         public static void main(String[] args) {
              File file = new File("\\\\10.40.55.33\\shared");
              File [] files = file.listFiles();
              for(File currentFile: files )
                   System.out.println(currentFile.getName());
    }

  • How to make a category required for all files created within a folder

    I've defined a category. It has attributes which have been flagged as required.
    When I view the properies of a particular workspace (library), the category is shown as available to the workspace. However, the category is not shown as required. And the "required" checkbox is not clickable.
    So .. how, from the OCS DHTML applet, do I make a particular category a required category for all files in a folder?

    Perhaps the Category Attribute is not marked as "configurable" when it was created. You can check this by "switching into Admin Mode" and drilling down the Categories using "Manage Categories" link. Check if the category attribute is marked as configurable or not.
    Ravikiran

  • Powershell - Test-Path if a file exists within a folder

    Hey Guys,
    I'm unable to get this to work correctly. I'm trying to see which folders have a file within them with the word "preview".  If it does, then tell me it exists, if not, then it doesn't exist.
    What am I missing?!? Ugh :(
    Here is my code
    $rootpath = "T:\Path1\Path2\*"
    foreach ($f in Get-ChildItem $rootpath)
    foreach ($i in Get-ChildItem $f)
    if (Test-Path $i -include *preview*.jpg)
    echo($i.name + " Preview Exists")
    else
    echo($i.name + " ***PREVIEW MISSING***")

    this script is only 1/2 working.
    I tested it with "t:\path1\path2\folder1\subfolder1, subfolder2, subfolder3 where preview1.jpg is n subfolder1"
    But, "t:\path1\path2\folder2\subfolder1\preview2.jpg is ignored
    foreach ($i in (Get-ChildItem $f |? {$_.psiscontainer))  should be
    foreach ($i in (Get-ChildItem $f |? {$_.psiscontainer}))
    $rootpath = "T:\Path1\Path2\*"
    $results = @()
    foreach ($f in Get-ChildItem $rootpath)
     foreach ($i in (Get-ChildItem $f |? {$_.psiscontainer))
     $result = "" | select File,PreviewStatus
     $result.file = $i.fullname
      if (Test-Path  ($i.fullname + "\*preview*.jpg"))
       echo($i.name + "           Preview Exists")
       $result.PreviewStatus = "Preview Exists"
      else
       echo($i.name + " ***PREVIEW MISSING***")
       $result.previewstatus = "Preview Missing"
    $results += $result
    $results | export-csv Preview_Status.csv -notype
    jon

  • In PSE 13, when I open a folder, jpeg files have a preview image, but PSD, DNG and CR2 files don't. Also, no thumbnail below the file list.

    Working in PSE 13, when I open a folder, jpeg files have a preview image, but psd files just have white sheet of paper as preview.  I have to open the file to be able to see it.  Also, there is no thumbnail of the file below the file list.Surely, there's a setting that needs to be changed. I did not have this problem with Elements 12. This is a real bother because I have to use Lightroom to see all the file types. It seems as if Elements is using the standard Windows file loader that can't show previews of file types it doesn't know including .PSD, DNG and CR2. Is that a bug or did I do something wrong? Thanks for any help.

    I am using Windows 7 64 bits. Working in the editor, I never use the organizer. The screen above is not the same at all that I got in Elements 12, it was completely different and showed me a thumbnail below the listing when I single clicked on one of the files. In Elements 12, I also could see  a thumbnail of all the file types, not only the jpegs. It is as if the loader is the regular Windows used anywhere, not the right one for Elements. I hope someone understands my problem.. Thanks.
    Mike

  • Get directory listing or files contained in a folder which is placed on a s

    Hello,
    I want to get the directory listing of a particular folder say 'xyz' which is placed on the server.
    I am using tomcat. I want to use Http to do it. How do it do it.
    Please guide.
    Regards,
    JAVA_student

    JAVA_student ,
    as pointed out file list is (in productional environments) usually turned off for security reasons.
    But I had a similiar requirement to the one you posted. I had a directory with thousands of image files with the name pattern <id>.jpg and the id's stored in a database. Not for every id in the database there existed a file. I wanted to show an image or in case the image file did not exist a default jpg. I could not set the error pages in web.xml to do it.
    So I had to take the id (a parameter in the request to the servlet I wrote for that), had to concat it with the 'virtual' directory name used in the applicationserver for the img directory. Then I had to check the existance of the file and to load it it and display it, if it existed otherwise I had to load and display the default picture.
    The problem is similiar to yours as the problem basically is to map a directory in a web application to a real directory in a filesystem (which works for files and directories.
    The answer is use getRealPath(String) of the ServletContext-object.
    Note: This only allows access to files and directories in the web application.
    e.g.
    http://www.theserver.com/mywebapp/img/ is a folder containing img files. The server does not allow directory listing.
    In a jsp within the application mywebapp you want to show a list of the files in /mywebapp/img/ .
    <HTML>
    <BODY>
    <%
    // in a jsp application gives you access to the context
    String sRealPath = application.getRealPath("/img") ;
    java.io.File fDir = new java.io.File(sRealPath) ;
    java.io.File[] allFiles = fDir.listFiles() ;
    for (int i = 0 ; i < allFiles.length;i++) {
       String sName = allFiles.getName() ;
    %>
    <%=sName%><br>
    <%
    %>
    </BODY>
    </HTML>

  • HT2531 Spotlight lists items and shows preview images.  BUT what about showing the location address of an item in my computer. Especially important if I've put the item in the wrong folder and what to locate it without multi-steps. iMac OS 10.5 was more u

    Spotlight lists items and shows preview images.  BUT what about showing the path/location address of an item in my computer.
    Especially important if I've put the item in the wrong folder and what to locate it without multi-steps. iMac OS X 10.5 was more useful.
    Old OSX Spotlight function automatically displayed path/location within the machine:  e.g. desktop/folder/sub-folder/item.
    Can I make Spotlight show the path?

    Press option-command and the path is displayed at the bottom of the little preview window.  Press command-return and the enclosing folder opens. 

  • Can you manually move files within a folder to put them in a specific order?

    I am new to mac, I was wondering if there is an app maybe that you could move files within a folder (ie photos) to make them in a specific order and then rename them, I used to be able to do this with my windows xp..... cant seem to make it happen with my new macbook pro and from what i can gather it cant be done? can it? Thanx in advance.........

    Thomas, I have set the view to maunally but when i move the icons they return to where they were sitting..?
    In the Finder? You probably have a sort selected in the Sort By submenu in the View menu. However, the order of icons in icon view won't have any influence on the order of the images in the slideshow, I think. Use iPhoto, this is one of the things it's made for, the Finder is not.

  • HT1751 After "Restoring iTunes Library Backup" it wont link to the files in the iTunes folder. I've followed the correct procedure, and iTunes lists all my music correctly (but with no artwork), but can't locate any of the files. Using Windows 7. Help ple

    After "Restoring iTunes Library backup" it wont link to the files in the iTunes folder. I've followed the procedure as described, and the iTunes folder is in the correct location. iTunes lists all my music correctly (albeit with no artwork), but can't locate any of the files.
    I've been restoring my iTunes folder from a backup hard drive to a new computer on which I've downloaded the latest iTunes (10.7). If this is a newer version than the one I backed up with could this be the problem? (I had the latest (to my knowledge) iTunes when I backed up the folder about 3 weeks ago, was this version 10.7?)
    Or is the version of iTunes (within recent updates) not an issue when restoring a library?
    Using Windows 7.
    Any help please?

    From the top of the page where the scripts live...
    The general method of use is to download the script to a folder of your choice, e.g. your Desktop, Downloads folder or create a folder at ...\iTunes\Scripts. Select a playlist or highlight some tracks in iTunes and then double-click on the script to execute it. If no specific tracks are selected the script will try to work with all tracks in the current playlist. Some scripts offer a choice of track by track confirmation of changes or fully automatic processing of the selection. Many of the scripts can optionally display a progress bar while running.
    You are strongly advised to backup your entire library, or at the very least the iTunes Library.itl file, before use. Test the behaviour of your chosen script on a small group of files first to make sure it does what you want before applying it to large numbers of files.
    Most builds of Windows will execute *.vbs scripts when you double-click them. If that doesn't happen then you might need to visit the Add/Remove Programs or Programs & Features control panel to enable the Windows Scripting Host. I can track down details if you have issues.
    Backing up and restoring data is an area that is often glossed over. Most people don't try to learn much about it until they've lost something important. (Me too )
    If your iTunes library was in the usual layout then normally copying the whole iTunes folder from the User's Music folder in the old computer to the User's Music folder in the new one will usually work fine. Ideally this is done before iTunes is installed so that there is no empty library to replace, and all settings are picked up from the old library. This post contains more details.
    tt2

  • We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter

    We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter who on our network opens the design file.

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Is there a way to prevent the the file list moving to the destination folder during export?

    During export, the file list is moved so that the destination folder is visible. If I want to access another folder during export, it becomes almost impossible since as soon have I located the 'new' folder I want, the file list is flicked back to the export destination folder. There must be a way to stop this. I just can't find it!

    Let's take the screen shot as an example. I might be exporting from the uppermost folder, "A9" to another drive which is perhaps ten or twenty lines further up in the folder list view. All fine and Dandy. The export starts and the view of the folder list will move up so that that folder to which I'm exporting is visible. Let's call that "Export A9".  Usually when I export, I want to be getting on with my next task. For the sake of of this example, let's say I want to be working on files within sub-folders in the bottom most folder, "testing 24-70". The folder list will have been scrolled up by LR so that the "Export A9" folder is visible. So, I scroll back down to "testing 24-70", but by the time I'm trying to click to see it's subfolders, LR will have scrolled me back up to "Export A9", hiding "testing 24-70". This will not be an issue for anyone with a compact folder hierarchy, but once you have several drives and a working folder hierarchy, the scrolling to the export folder hides any folders that don't happen to show after LR has scrolled to the export folder. This doesn't just happen at the start of the export, LR scrolls to the export folder with every new file it exports. It can make accessing the rest of your folder hierarchy during export nigh on impossible.

  • How do I rename more than one file at a time within a folder?

    I am new to OSX. I am looking to rename a batch of .jpg files but I can't figure out how to rename all files within a folder?
    I looked for help and apple help only describes how to rename a single file?  please see the attrached link for more infomation
    http://support.apple.com/kb/PH10646
    Thankyou for your support people!
    Apple Nubee

    Use the Automator Action "Rename Finder Items"
    (Automator is in the Applications Folder)
    You have these options in rename:
    Click "Show this action when the workflow runs", then save the workflow as an App

  • Error message while updating Motion. 5.0.2: The file "InkBleed03.mov" couldn't be saved in the folder "Particle Images.localized".

    While trying to update Motion 5.0.2 I continuously reviece this follwoing error message.
    The file “InkBleed03.mov” couldn’t be saved in the folder “Particle Images.localized”.
    Motion will not allow me to update.
    Running Mac OS X Version 10.7.2  Lion on a MacBook Pro
    Processor 2.8 GHz Intel Core 2 Duo
    Any ideas?

    Hi Frank,
    Thanks.
    My HD is a "normal" HD, so I guess it's HFS+. (According to Disk Utility it is Mac OS Extended (Journaled).
    The NAS is WD MyBook Live Duo. I just plugged into my Time Machine.
    I am relocating using Aperture "relocate originals for project" under the File tab.
    Ahh, thanks for the answer to question 1.
    Yes, I am trying to relocate them, but tried different things to find the problem.
    And the problem seems to be that when an image gets an extra attribute (when it's downloaded from the internet, when it is comes from a mail message) then Aperture seems not to be able to move the file.
    I.e. Aperture presumeably asks the Finder or kernel to perform this task, and this then fails because of the extra attirbutes that were set.
    I now found a way of manually removing the extra attributes, but that is a pain.
    Think of this normal workflow:
    - someone sends me an email containing images
    - I move the images to my Desktop
    - I then import the images into Aperture
    - I then decide to relocate my images for that project to my NAS
    Then is when this problem occurs.
    So I just tried to relocate to another place on my HD.
    That works fine.
    I looked again at the error message.
    And it says "could not set attributes com.apple.metadata:kMDItemDownloadedDate on destination file descriptor" .
    So, yes, it seems like it has to do with the NAS not supporting setting the extra attributes.
    And as long as there are no extra attributes on an image, there is no problem.
    (Not completely true, but I have another thread about that)
    Thanks Frank, I have to digest this a bit.
    Regards
    Jan

  • Can connect but not retrieve file list (VSFTPD) from within network

    Hi!
    I've got a D-Link DIR-100 wired router to which an Airport Express and an MSI Wind (Arch Linux server) is connected. I can connect to the Wind from outside the LAN, which includes SSH, HTTP and FTP. However, FTP won't work if I'm inside the LAN. The Wind has the IP 192.168.0.101 in the network, and I forwarded the port 22 for SSH, 80 and 443 for HTTP and 20-21 for FTP. I'm using OpenSSH, Apache, and VSFTPD.
    When trying to connect with Transmit (OS X) I get this error message:
    [b]Could not retrieve file listing.[/b]
    Server said:
    Illegal PORT command.
    Error -162: PORT failed
    The Transmit log looks like this:
    Transmit 3.6.7 Session Transcript
    LibNcFTP 3.2.1 (August 13, 2007) compiled for UNIX
    Uname: Darwin|asynja.local|8.11.1|Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386|i386
    220: (vsFTPd 2.1.0)
    Connected to www.mydomain.se.
    Cmd: USER myusername
    331: Please specify the password.
    Cmd: PASS xxxxxxxxxx
    230: Login successful.
    Cmd: TYPE A
    200: Switching to ASCII mode.
    Logged in to www.mydomain.se as myusername
    Cmd: SYST
    215: UNIX Type: L8
    Cmd: PWD
    257: "/home/myusername"
    Cmd: PASV
    227: Entering Passive Mode (192,168,0,101,227,13).
    Fixing bogus PASV data address from 192.168.0.101:58125 to XX.XXX.XX.XX:58125.
    Data connection timed out.
    Falling back to PORT instead of PASV mode.
    Cmd: PORT 192,168,0,102,204,170
    500: Illegal PORT command.
    Cmd: NOOP
    200: NOOP ok.
    Cmd: PORT 192,168,0,102,204,171
    500: Illegal PORT command.
    (I edited out the IP and login credentials.)
    If I try to connect to 192.168.0.101 though it works like a charm. How come I can't use the same adress? I can visit the external IP/HTTP in a browser, I can connect to it through FTP, but I can't view the files?

    Interestingly, the errors above seem to be a little bit of a
    red herring. If I turn off "enable file check in and check out" in
    Dreamweaver then files can be downloaded, edited and uploaded
    perfectly. I can also create new files. As soon as I turn checkouts
    back on, it stops working. The errors above show up in the Apache
    server log even when this box is unchecked and yet everything works
    correctly. Because Contribute offers no option for editing without
    writing extra info files to the server it still won't work.
    The Dreamweaver log shows the following when I attempt to
    check out a file:
    Started: 12/19/08 6:25 PM
    Operation timed out. Cancelling...
    Operation timed out. Cancelling...
    /webdav/robots.txt - error occurred - An HTTP error occurred
    - cannot get robots.txt. Dreamweaver could not connect because the
    server is down or not accepting connections.
    File activity incomplete. 1 file(s) or folder(s) were not
    completed.
    Files with errors: 1
    /webdav/robots.txt
    Finished: 12/19/08 6:27 PM
    As I mentioned, when I turn off checkouts this whole process
    works correctly, and I can edit and create new files.

  • How Can I Make a Text File that Lists Files in a Finder Folder?

    I would like to email lists of files in my various Finder folders. I have Mac OS X (10.4.6). Finder works nicely, but I cannot figure out how to save a list of file names. Can I get advice? Thank you.

    I'd like to thank "roam" for the link http://www.searchwaresolutions.com which opened a site for "printwindow" for Mac OS. Wow!! That was easy! It's a free download for the standard product which luckily worked for me. After downloading PrintWindow, and putting it in my Applications and reading PDF instructions, I opened PrintWindow and clicked "File". Then I chose "Print Folder Listing", clicked that and see "Print Listing" of all my Mac's folders. Then, I selected the folder for which I wanted the file names listed on paper. Then it opens a Print Options menu. I clicked Print. Then, a "Page Setup" menu appears. I clicked "OK". Then a "Print" menu appears. On the "Print" menu, there is a PDF options menu!! On that, there is a "Save as PDF"!! I clicked "Save as PDF" and then there is a small "Save" menu where I typed a new file name and the folder in which I wanted the listing saved. It worked! Thank you.

Maybe you are looking for

  • TaskQuery issue in worklist : Help needed urgently

    Hi , Currently we are in a migration project from weblogic 8.1 to weblogic 10.2 integration. In 8.1 we have used the TaskSeclector .However in 10.2 it is depricated.So we were tying to use the TaskQuery. However while using TaskQuery we are getting u

  • Load file in applet

    Hi does anyone knoe how to load a file into an applet? Thanks

  • Worklow in HCM process and Forms

    Hi Gurus, We have recently upgraded from HR SP level 14 to level 24. After the HRSP upgrade, we find that the workflows used in the HCM process and forms which were working fine earlier are not working now. To trigger the workflow, I am using the cla

  • Getting my apps back for free?

    So, time ago (like a month or two) my iPod got stolen (4th generation touch if that makes any difference), unfortunately for myself, I didn't get a chance to back up my last transactions on iCloud/iTunes, so all the  apps that I bought (like games an

  • Latest and finish start dates.

    Dear all, 1.What is actually meant by latest and finish start dates? 2.In my maintenance order, when i am using my workcenter against each operations, the earliest start date, earliest end date, earliest start time, and its finish time is calculating