Howto: Automatically import files from folder at app launch!

I've never used iPhoto much, but I am starting to like it. I don't exactly know why, but anyway. A thing I'd like to do (and I don't know if that's possible or not) is have iPhoto automatically import photos from one or more directories (or a directory + subdirectory) when I start the program. I've seen similar questions like mine, and some AppleScripts/FolderActions on how to make iPhoto launch and import files when they are put in a certain folder. But I'd prefer if it didn't automatically start. Sometimes I want to just drop some photos into a folder without wanting to look at/edit them right way, and so these scripts don't suit me. Perhaps what I want, can also be done with AppleScript (I know it's powerful!) but either way, I would appreciate if someone could help me out here or at least answer me if it can be done (in a way that is simple for me!).
Thanks in advance!

temhawk
Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
Look there for a Folder called 'Auto Import'. Make an Alias to the Folder (File -> Make Alias)
Drag the alias to the Desktop. *Make no other changes*.
Pop files onto that Alias, they'll be imported next time you launch iPhoto.
This seems to be an option that was being added to v7 and then not finished.
You may also be able to concoct something with Automator or check out Hazel
Regards
TD

Similar Messages

  • Importing files from folder

    Hello Guys!
    Since I downloaded the latest ITUNES version I have the problem, that i tunes does not import all my files from the mp3 folder.
    I have around 2000 files and it only imports 960.
    Does anyone know what the problem might be and how I can solve it?
    Thx for your help
    haeggis

    Some users have reported that importing in smaller batches can get past this problem.

  • Best way to export and import data from an iPhone app?

    How do people here prefer to export and import data from an iPhone app?
    For example, suppose your app creates or modifies a plist. It might be nice to provide that plist to the user for separate backup and later allow them to re-import it.
    How do people do that? Email the plist to an address? If so, how would one later get it back in?
    Is there a common way people do this kind of thing?
    Thanks,
    doug

    Or maybe the best approach for this is some sort of file synchronization feature? Is there a way of having files from the app's filesystem automatically get stored on the computer's filesystem when synchronizing and vice-versa?
    doug

  • Automatically Importing Photos from Finder to iPhoto '11

    Hi there,
    I save all of my photos to folders on my Drive. I'd like to set up my iPhoto '11 to automatically import photos from these folders to iPhoto each time I add a new photo, the way Picasa does. The only glitch is, I want to have the photos listed as Albums and not events. I was able to import my photos to iPhoto translating my folder names to Album names (using Automator) but am unable to get it to work automatically. Each time I add a photo to my folder on my drive, nothing happens...I would have to manually add each photo to iPhoto.
    Help with keeping it automatic and keeping folders as Albums?

    If the Automator action is working for you manually you can turn it into a Folder Action which will fire each time a new file is added to the folder.
    When you create the Automator action there is a template to create Folder actions. Create  new action as a Folder action and add the you're Automator code to it.

  • I updated LR5 to 5.7, its still not importing files from my D750. Any help would be appreciated.

    I updated LR5 to 5.7, its still not importing files from my D750. Any help would be appreciated.

    Did you try unchecking Sync Photos on the Photos tab of your sync settings and syncing?  If this doesn't remove them, try creating an empty folder on your PC, then selecting to sync this folder on the Photos tab and syncing your phone.  This should delete the existing photos prior to syncing the empty folder.
    Also, you can transfer these photos to your computer if you need to by using an app like PhotoSync.

  • Hi,delete file from folder?

    hi,i am deleting file from folder as follwos
    <%@ page import="java.io.File" %>
    <%
    File myFile = new File("D:\\jakarta-tomcat-4.1.18\\webapps\\ROOT\\upload_files\\xyz.txt");
    myFile.delete();
    %>
    i am sucessfuly deleted file from above path.
    if i use follwing code i unable to delete my file, can one help,
    how to do it,
    <%@ page import="java.io.File" %>
    <%
    String fname="xyz.txt";
    File myFile = new File("D:\\jakarta-tomcat-4.1.18\\webapps\\ROOT\\upload_files\\'"+fname+"'");
    myFile.delete();
    %>
    thanks
    pullareddy

    i think if above doesn't work try this it should work
    change this line
    File myFile = new File("D:\\jakarta-tomcat-4.1.18\\webapps\\ROOT\\upload_files\\'"+fname+"'");
    to this
    File myFile = new File("D:\\jakarta-tomcat-4.1.18\\webapps\\ROOT\\upload_files\\"+fname);

  • Read contineously file from folder

    HI
    I have 1000 of files and I want read files from folder automatic. Each file ends with
    if $BATCH_FILE==true
    define $END,false
    else
    power off
    define $END,true
    if 1 text file is finish then it should load another file automatically

    Hi kalu,
    don't know what you're trying to do:
    - you have a "path" control but you don't use it for ListFolder...
    - you get an array of filenames from ListFolder, but you don't use that data later on...
    - you are using "OpenFile"/CloseFile to get a file path (in the event) and later on you use that path to read data from...
    Your original question doesn't has anything in common with those things you do now...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to make button to format a HardDrive or USB, How to remove all files from folder, and How to delete a process in listbox with a textbox?

    Hello!
    Here's the question with explaniation: How can i format the USB or Drive by clicking a button what's meant for it?
    and the second question what's also in vb.net: How can i remove all files from folder ? 
     Here's the Look of program: *
    Using the PC button, it will delete the free space of the PC, do you guys/girls know where it's location?

    Example Code:
    Imports System.Runtime.InteropServices
    Imports System.IO
    Public Class Form1
    Dim CBoxDrives As New ComboBox
    WithEvents FButton As New Button
    <DllImport("shell32.dll")> _
    Private Shared Function SHFormatDrive(ByVal hwnd As IntPtr, ByVal drive As UInteger, _
    ByVal fmtID As UInteger, ByVal options As UInteger) As ULong
    End Function
    Private Enum SHFormatFlags As Integer
    SHFMT_ID_DEFAULT = &HFFFF
    SHFMT_OPT_FULL = &H1
    SHFMT_OPT_SYSONLY = &H2
    SHFMT_ERROR = &HFFFFFFFF
    SHFMT_CANCEL = &HFFFFFFFE
    SHFMT_NOFORMAT = &HFFFFFFD
    SHFD_FORMAT_FULL = 0 ' full format
    SHFD_FORMAT_QUICK = 1 ' quick format
    End Enum
    Private Sub FButton_Click_1(sender As System.Object, e As System.EventArgs) Handles FButton.Click
    If CBoxDrives.Text = "" Then
    MsgBox("No Drive Selected")
    Exit Sub
    End If
    Dim Iresult As ULong = SHFormatDrive(CType(Me.Handle.ToInt32, IntPtr), CUInt(Asc(CBoxDrives.Text.Substring(0, 1)) - Asc("A")), CUInt(SHFormatFlags.SHFMT_ID_DEFAULT), 1)
    End Sub
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    Me.Size = New Size(200, 100)
    With FButton
    .Size = New Size(50, 25)
    .Location = New Point(5, 5)
    .Text = "Format"
    End With
    Me.Controls.Add(FButton)
    With CBoxDrives
    .Size = New Size(50, 25)
    .Location = New Point(75, 5)
    .DropDownStyle = ComboBoxStyle.DropDown
    End With
    Me.Controls.Add(CBoxDrives)
    Dim DrivesFound As Integer = 0
    Dim allDrives() As DriveInfo = DriveInfo.GetDrives()
    Dim d As DriveInfo
    For Each d In allDrives
    If ((d.DriveType = DriveType.Fixed) Or (d.DriveType = DriveType.Removable)) AndAlso Environment.GetEnvironmentVariable("SYSTEMROOT").StartsWith(d.Name) = False Then
    CBoxDrives.Items.Add(d.Name)
    DrivesFound += 1
    End If
    Next
    CBoxDrives.SelectedIndex = DrivesFound - 1
    End Sub
    End Class

  • I imported files from an external hard drive to Itunes on a new computer.  they imported & play fine, but the ratings & playlists are gone & i am unable to update any info.  I found a file name playlist on old drive & imported now most files are missing!

    I imported files from an external hard drive to Itunes on a new computer.  they imported & play fine, but the ratings & playlists are gone & i am unable to update any info.  I found a file name playlist on old drive & imported now most files are missing!  Help!

    Can you locate the iTunes Library.itl file on the old drive? Ideally you would have simply copied over the entire iTunes folder structure from <User's Music> on the old computer into <User's Music> on the new one to transfer the library will all playlists, ratings, play counts etc. intact.
    tt2

  • When i import movies from my iPhoto app to my iMovie app does it make a copy (thereby using double the hard disk space) or does it link to my iPhoto app? The reason i ask is i want to archive all my videos from iPhoto/iMovie. HELP!

    When i import movies from my iPhoto app to my iMovie app does it make a copy (thereby using double the hard disk space) or does it link to my iPhoto app? The reason i ask is i want to archive all my videos from iPhoto/iMovie. Do i need to archive the movies in iPhoto AND iMovie? HELP!

    Hi - I'm having the same problem with freeing up space on the HD. If I can't free space if I'm using any part of the clip, how can I split up the clips so that I can discard the part I won't use? This is crazy! I have only 4 GB of free space left!
    Also, I've tried to transfer the project file to my external HD but I keep getting an error saying I can't transfer it. I've been told this is because I don't have enough space on the HD for the transfer. I tried a similar transfer with another computer with plenty of HD space but the same error occurred. Is there a way to break up the project file into small pieces for the transfer (I'm thinking the whole movie file is just too big)?
    Thanks for any info!

  • LR 5.5 Doesn't work.  Won't import files from Sony or Canon

    Since initially downloading LR 5, I have been unable to import files from my Canon 7D, Canon 5D Mk3, or my Sony Nex 7.   All three cameras are running the latest firmware versions.
    I'm using an Apple 27" IMac, with 3.4GHz Intel I7, with 16Gb 1333Mhz DDR3 ram.
    The ONLY way I've gotten LR 5.X to import any images has been to move them from the memory card, to a folder on the desktop, and then import them from that folder.
    Anything else I try results in a dialogue box that tells me the images can't be imported.
    LR4 works just fine, and I have no issues importing files from any of my three cameras with it.

    When I try to import anything, a dialogue box pops up, titled "Import Results"
    Below that, it says "Some import operations were not performed",
    Then, below that, it says "The following files were not imported because they could not be read."  And it then lists individually all the images I tried to import.
    I then have the option to "Save As", or "Ok".  
    When I click "Ok", it ejects the card, and "No photos in Current Import" appears in the middle of the screen.

  • Cannot import files from hard drive

    I just got an iPod and downloaded iTunes (for Windows). I imported some music from CDs, but I can't import files from my hard drive. I've tried adding them as files and in a folder. Every time, nothing happens. I don't get an error message, but the songs don't show up anywhere in iTunes or on my iPod. Can anyone help me?
    P.S. They are .aac files.
    iTunes 7.0.2.16   Windows XP  

    Can you confirm that you are following one of the methods in the Add to Library section of this article in the Apple Knowledge Base.
    In particular, pay attention to the statement that "iTunes adds entries in your iTunes library for the selected files, and copies the files to your iTunes Music folder (if you have that option selected in the Advanced pane of iTunes preferences)."

  • TS2179 import files from final cut express to idvd

    Import files from final cut express to idvd. When we are making a dvd in iDVD importing the files (widescreen mov files ) from final cut express they automatically change to 4x3. They look correct when played in the quicktime player. Has anyone had this problem.

    Generally, I just drag the DV file from the finder to the iDVD menu window. Make sure you don't drag it to any Drop Zones, I think that might be your problem with the DV file showing up as the background. If you have default settings in iDVD, this drag and drop should then create submenus based on your chapter markers.
    I'm not sure if you have any issues with the Chapters not showing up in QT. If you're expecting them to show up, then make sure that when you do the Export to QT that the option to include Chapter Markers is set. Upon conversion, you should see the Chapters within QT as well as when imported into iDVD.
    Hope this helps!

  • Import Files from Nikon Transfer 1.0

    I am evaluating Lightroom 5.3.  I want to import files from a Nikon D800.  I was able to import photos directly from the camera memory card, however I have not been able to import photos that I previously transfered from the memory card to my hard drive using Nikon Transfer 1.0 program.  Is there a way to get these files to import into Lightroom?

    JimHess wrote:
    I think Rob Cole has access to something that will fix your images. Hopefully he will see this and follow-up.
    Phil Harvey wrote a fixer-upper:
    http://www.sno.phy.queensu.ca/~phil/exiftool/
    (utility app at the very top).
    ~R.

  • Delete file from folder only (not from list)

    Hi all,
    I've searched a lot and didn't succeed so far, that's why I need your help. In a cloud context, I'm actually creating and uploading files (pdf and/or xml files) "on the go" to sharepoint folders via the SOAP API and this is perfectly working. But
    in a cloud context, I also need to decomission services which is translated into deleting files into Sharepoint.
    That's where it became complicated, because according to the API we cannot delete files if they are not part of a list structure, which is not my case. Is that true ?
    The only info I have when trying to delete a file via the SOAP Api is : its name, its folder, and the endpoint where the folder is. So my question remains simple I guess : is this possible ? If so, how to (a link to the SOAP body would be usefull)
    Thanks a lot
    Regards
    Baptiste

    Hi,
    According to your post, my understanding is that you want to delete file from folder.
    In SharePoint 2010, It is recommended to use Client Object Model to achieve it, the following code snippet for your reference:
    string siteURL = "http://siteurl";
    ClientContext context = new ClientContext(siteURL);
    //specific user
    NetworkCredential credentials = new NetworkCredential("username", "password", "domain");
    context.Credentials = credentials;
    Web web = context.Web;
    context.Load(web);
    context.ExecuteQuery();
    string relativeUrl =web.ServerRelativeUrl +"/DocumentLibraryName/FolderName/FileName";
    File file = web.GetFileByServerRelativeUrl(relativeUrl);
    context.Load(file);
    file.DeleteObject();
    context.ExecuteQuery();
    If you still want to use SOAP API, we can use the UpdateListItems method under Lists web service to achieve it.
    http://www.dhirendrayadav.com/2010/06/delete-list-items-using-web-service.html
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/61466984-1844-48a1-8c1e-1c59a0f9876a/move-and-delete-files-remotely-using-sharepoint-web-services-?forum=sharepointdevelopmentlegacy
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • I need flash to play two movies in a single swf file

    Here it is. I have two videos: bending.flv and lifting.flv (I also have them in swf format). I want the user to click play and for the videos to play one after the other, basically combining the videos into one. However, I need to add a screen that s

  • Patch available for JMS?

    Hi,           I am using a Weblogic Server 8.1 SP4 on my local development environment. The application has a JMS based report module. A report is created by the front-end and stored in a JMS Queue with a persistent FileStore. Once the report is crea

  • 9i performance issues in windows 2000

    I have imported the database from 8.0.5 to 9i recently and have been facing performance degradation although 9i is running in a better server with more memory and processor speed. The same application, use to run more efficiently with lesser db_block

  • I am not able to see my contacts marked as home or...

    I am not able to see my contacts marked as home or work while texting. I am only able to see my mobile contact in add list of text message.

  • Have imported video into audition but how do I get the audio to snap after editing?

    Just to explain, I have imported a timeline from Premiere into Audition CC. I have one full piece of video and one piece of audio but need to clean up the audio. What I'm trying to do is edit the audio and have it snap to the piece of audio to the le