Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Picture Viewer.

Picture Viewer.

Scheduled Pinned Locked Moved C#
csharpquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    User 11832043
    wrote on last edited by
    #1

    So I'm using this command to open a picture in C sharp Process.Start(@"C:\MyPicture.jpg"); Is there anyway I can open the latest picture in the folder?

    P S 2 Replies Last reply
    0
    • U User 11832043

      So I'm using this command to open a picture in C sharp Process.Start(@"C:\MyPicture.jpg"); Is there anyway I can open the latest picture in the folder?

      P Offline
      P Offline
      Pete OHanlon
      wrote on last edited by
      #2

      Yes. You could iterate over all the picture files in the directory, looking at the file attributes for the files. That should help you find the latest.

      1 Reply Last reply
      0
      • U User 11832043

        So I'm using this command to open a picture in C sharp Process.Start(@"C:\MyPicture.jpg"); Is there anyway I can open the latest picture in the folder?

        S Offline
        S Offline
        Sebastiaan Lubbers
        wrote on last edited by
        #3

        var directory = new DirectoryInfo(@"C:\");

        var latest = (from f in directory.EnumerateFiles("*.jpg")
        orderby f.CreationTime
        select f.FullName).LastOrDefault();

        Console.WriteLine(latest);

        Returns null in case there are no jpg files found.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups