Aliases replacing real files, losing originals

Hiya, I am asking about a problem happening with my parents computer. Over the last few hours, several folders (important ones) that they had on their desktop, and some documents also have been turning themselves into alisaes for no apparent reason. When they try to open these aliases, the message "the alias...(name of folder) could not be opened, because the original item cannot be found." My dads tried looking for the originals using spotlight and cant find them. Any initial thoughts on what may be the problem? It would be much appreciated.
He is thinking it may be a virus, but considering his system is not well maintained it could be anything. This is a powerbook using 10.4.3 by the way, not the ibook as shown below.
Thanks everyone.
iBook G4 12 inch   Mac OS X (10.4.2)   80 GB internal Hard Drive

Thanks everyone.
As far as some of the advice goes, such as finding the originals or the aliases having broken links... my dad has looked for the missing items thoroughly (using spotlight, find file etc.) and cannot find them. Also, these are not aliases my parents created on purpose, they were (up until this problem began) normal originals, but turned into aliases on their own . I know it sounds weird, which is why we're confused, but apparently that is what happened.
I think they've been using it since the problem began, so in light of what Kurt said, sounds like I'd better warn them not to.
My parents have been very busy the last few days, so have not had the time to dedicate to sorting out their machine, I'm not sure when they will be able to look at it, so if I come back to this in a few days, I'm hoping you guys can chip in again!
iBook G4 12 inch   Mac OS X (10.4.2)   80 GB internal Hard Drive
iBook G4 12 inch   Mac OS X (10.4.2)   80 GB internal Hard Drive

Similar Messages

  • Applescript for replacing Original Files with aliases from an Organized Library.

    Hi, all I am new to Applescript and the support community. I am working on developing a script that takes a folder and replaces its original music content with aliases from an organized Library. Let me explain a little better.. I have a list of project folders that all contain folders and original music. My company uses iTunes to store and organize their music. Once iTunes has imported the music and has made a copy of the original file and organizes it accordingly we create an alias within the iTunes Library and manually drag and drop the aliases into our Project folders. I have a Script that reverts the aliases with the orginal file and the coding is
    Code starts here---
    set f to choose folder
    ProcessAlias(f as string)
    -- replacess all alias files in the passed folder path (string)
    on ProcessAlias(this_folder)
    -- get list of folders in this_folder
    set utid to AppleScript's text item delimiters -- store old delimiters
    set AppleScript's text item delimiters to {return}
    tell application "Finder"
    set folder_listing to every folder of folder this_folder as string
    end tell
    set AppleScript's text item delimiters to utid -- restore old delimiters
    if folder_listing is "" then
    set folder_list to {}
    else
    set folder_list to paragraphs of folder_listing
    end if
    -- process folder_list
    repeat with sub_folder in folder_list
    ProcessAlias(sub_folder) -- send each folder back to this subroutine
    end repeat
    -- get list of alias files and process them
    tell application "Finder"
    set alias_files to every file of folder this_folder whose kind is "Alias"
    repeat with this_alias in alias_files
    try -- error if broken alias
    set orig_item to original item of this_alias
    set item_dest to container of this_alias
    move orig_item to item_dest with replacing
    end try
    end repeat
    end tell
    return -- you can return a listing of moved originals if you want
    end ProcessAlias
    Basically I need the revers of this process. The objective is to save space and continue to let iTunes organize and copy files for us. I already have made a script that generates aliases into the subfolders of iTunes organized Library withour replacing the file that iTunes created. I also made a script that takes the itunes library and dumps all the aliases into a designated folder. I thought this may be helpful for drawing aliases to files that are in our project folder but seem to be stuck.
    I was thinking maybe if I took my iTunes and made all the aliases all into one folder to draw aliases from would make it easier. I'm not sure but it seems like there should be some easy way of doing this. Any suggestions would be greatly appreciated.

    Also Script above is for reverting aliases into original files as posted by Eatalay of this forum.

  • Where has 'do you want to replace this file' gone when copying items in lion?

    Hello, can anyone tell me if I can still have the option when copying items from one folder to another to be asked ' do you want to replace this file' instead of only having the new options to: stop / keep both / or replace all?  thanks for your help.

    If you don't mind losing them, it's all right to do it.
    Maybe you just want to delete them instead?
    Or do you mean you want to replace the faulty one in your Projects folder with a correct one from your Applications folder?
    Is this the Application you're talking about moving?

  • Preserve Aliases when move files to different drive

    I have several folders and files that I want to move from my laptop's internal hard drive to an external hard drive. I also have several aliases for these files that I want to KEEP on the internal drive. Is there any way to MOVE the folders and files to the external hard drive while preserving the aliases, so that when I click on the laptop aliases they will open the external hard drive files? I already found a discussion that shows how to MOVE files to the external drive as apposed to copying, but when I did it (using command drag), the alias residing on my laptop no longer worked.

    Hi,
    These scripts work, if the filename contains always three
    words separated by a space, otherwise the file will not be moved.
    The script will overwrite files that already exists in the destination folder.
    Here's the script that uses a shell
    set theFolder to "" -- drag/drop your folder between quotes
    set destination to "" -- drag/drop the folder "folder importen letters" between quotes
    do shell script "dest=" & (quoted form of destination) & "
    /usr/bin/find " & (quoted form of theFolder) & " -type f -maxdepth 1 \! -name '.*' -print0 | while read -d $'\0' f; do
    name=${f##*/}; folderName=${name%% *}; year=${name##* };
    if [[ "$year" = . ]]; then year=${year%%.*};fi
    if [ -d "$dest/$folderName/$year" ];then
    /bin/mv -f "$f" "$dest/$folderName/$year/$name"
    fi
    done"
    or this script if you prefer the Finder
    set theFolder to (POSIX file "") as string -- drag/drop your folder between quotes
    set destination to (POSIX file "") as alias -- drag/drop the folder "folder importen letters" between quotes
    tell application "Finder"
    repeat with tFile in (get files in folder theFolder)
    set {folderName, t_year} to my getTheseNames(name of tFile)
    if t_year is not "" then try
    move tFile to folder t_year of folder folderName of destination with replacing
    delete tFile -- because the command move, doesn't move on other volume, it duplicate
    end try
    end repeat
    end tell
    on getTheseNames(tname)
    set oldTID to text item delimiters
    set text item delimiters to " "
    try
    tell tname to set {t_base, t_end} to {text item 1, text item 3}
    set text item delimiters to "."
    set t_end to text item 1 of t_end -- text before the period = the year
    on error
    return {"", ""}
    end try
    set text item delimiters to oldTID
    return {t_base, t_end}
    end getTheseNames

  • How to Edit and Replace Psd Files in Adobe Flash - Help!

    Hi Everyone,
    I am new to flash and I am trying to build my first flash site using a flash template. I can use flash to edit certain components like header text, etc. But The content is impossible for me to change. I think that these are psd files, which I can open with gimp or another program and edit. I save and replace that file, but when I view movie again, the content is the same. I guess what I need to know is how to get these files back into my flash movie after I have edited them. Please help, I am no computer expert, but I am learning. A how to for dummies answer would be awesome.

    Maybe You should try the Flash-forum:
    http://forums.adobe.com/community/flash

  • I had two files named graphics and I replaced one graphics file with another which was the wrong one.  Can I undo my replacement?  I move the wrong one, which was on my desktop into another one and that is when it as me if I wanted to replace the file.

    I accidently replaced a file with another.  Can I undo my action? 
    I had two files named graphics.  One was on my desktop and another was within another file called solitarie.  I move the one on my desktop (wrong file) into the solitarie file and was asked if I wanted to replace the graphics file in the solitarie folder (the correct one).  I said yes accidently and then remembered that I had made a mistake.  If I use undo, it only move the wrong file back to the desktop.  Is there an undo of replace?

    Sorry, but's that's why you get the warning. "Replace" means just that - the new file over-writes the old one. There is no undo.

  • Find and replace in files does not refresh when changes are made

    Using RH10, I search for a term with the Find and Replace Options pod. I use the Find Results list as a reference only, and open each file from the Topic List. I do this instead of opening the topics from the Find Results tab because I want to see the WYSIWYG changes. Anyway, I make my edits and delete the search term from each topic. Then, to make sure I have done all the work, I run the search again. I expect to see no or at least fewer matches than before, but I still get some or all of the same results as before, even though I double-check the Design and HTML views of the topics and even check the source of a topic separately in Notepad, all indicating that the search term is gone from the topic.
    There is some ridiculous lingering or echo going on. I make sure to select Look in: <Current Project>, and the paths of all the Find Results files are fine. How do you refresh the search so that this echo doesn't occur?
    Also, I close the Find and Replace Options pod, reopen it and start the search again, and the same results are there.
    Message was edited by: DMilkes

    Hi there
    To avoid the message about the file being modified, close all topics in the editor before commencing with any find and replace operations. The message is produced because you have the aforementioned topics open in the editor.
    As you mention "Find and replace in files", I'm guessing you are referring to version 8. I just opened version 8 and performed a find and replace to confirm. There is a button allowing you to clear all.
    On the clicking and dragging to create a link, it's never worked that way. You simply cannot drag from the Topic List pod to do it. But you can from the Project Manager pod. Perhaps you should consider submitting a Wish Form to ask for the ability to click and drag from the Topic List pod to create links.
    As far as rearranging your topics into different folders, as long as you do it from inside RoboHelp you shouldn't be destroying any links. RoboHelp will update references for you as you move things around. The only issue is if you are automatically creating your TOC structure based on the project structure. But usually that's a one time shot. From there forward you just manage things using the TOC editor.
    Hopefully this helps... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Automatically Replacing Images Without Losing Previous Image's Action

    I've created updated versions of some images in a Keynote presentation, but the images they replace have actions assigned to them. Is it possible to update a pre-existing image so the updated version retains any actions?

    You have two options for this. The best option is to define the image as a media placeholder. Go to Format>Advanced>Define as Media Placeholder. Then you can change images and keep all actions.
    The other option is if you have saved your Keynote as a package, you can right click the icon and choose show package contents. Then make sure the new images are the exact same name as the ones you wish to change and drag them into the folder. You be asked if you want to replace the file already named --- and click yes. Keynote will then change the old picture with the new one. I would only use this option if you are changing a lot of images at once and it is too time consuming to use the other method.

  • I have songs on my iPod and iTunes where sections ranging from 40 seconds to 2 minutes do not play.  The song status bar indicates the file is still being played but there is no audio.  What can I do to repair or replace these files?

    I have songs on my iPod and iTunes where sections of the song ranging from 40 seconds to 2 minutes will not play.  The song status bar indicates the file is still being played there is no audio.  What can I do to repair or replace these files?

    If iTunes purchases, delete and redownload by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise delete and resync if they play OK in iTunes on the computer

  • Need to replace a file in the application server

    Hello Experts,
    Through ABAP coding, I need to replace a file which is available in the application server from one path to another. I should not use OPEN DATASET, CLOSE DATASET, DELETE DATASET and all as they deal with the data. I need to replace the file with out touching the data of the file.
    Could anyone please help.
    I heard that i have to use some UNIX script.
    Regards,
    Sudheer

    Sudheer,
    Try this...
    WITHOUT TOUCHING THE DATA OF A FILE . . .Just Moving the file ( unix commands in abap )
    DATA: command(255) TYPE c,
          fnam_sour(255),
          fnam_target(255).
    fnam_sour = '\hme\usr\interface\..... " path of source file
    fnam_target = '\hme\usr\interface\..... " target path, where file to placed.
    OPEN DATASET fnam_sour FOR INPUT " fnam_sour -> path of source file...
                     MESSAGE msg IN TEXT MODE
                     ENCODING DEFAULT.
    IF sy-subrc <> 0.
    < error msg : no file exits>
    else.
    OPEN DATASET fnam_target FOR INPUT " fnam_target -> path where file to be placed....
                     MESSAGE msg IN TEXT MODE
                     ENCODING DEFAULT.
    if sy-surc = 0.
    CONCATENATE 'mv' fnam_sour fnam_target INTO command SEPARATED BY
         space.
        CONDENSE command.
        PERFORM uxcmd USING command.
    endif.
    endif.
    *&      Form  UXCMD
    FORM uxcmd  USING    p_command.
    **issue UNIX command by calling system function.
      DATA: BEGIN OF itab OCCURS 0,
             line(255),
            END OF itab.
      CALL 'SYSTEM' ID 'COMMAND' FIELD  p_command
                    ID 'TAB'     FIELD  itab-sys.
    ENDFORM.                    " UXCMD
    Regards
    Ram

  • Using a real file path to include a JSP using RequestDispatcher

    Hi,
    I am trying to figure out how to use RequestDispatcher inside a servlet to include a jsp page using a real file path instead of a context path. So for example I would want to do something like...
    RequestDispatcher rd = this.getServletContext().getRequestDispatcher("c:/tomcat/conf/think.jsp");
    Is this possible? tomcat is complaining that the path does not start with a "/"
    From a higher level I am trying to setup a solution where all of my web applications can share a set of global jsp pages and other resources. I know the easiest solution would be to put everything into one web application but this does not make sense in my situation because I have differnet web applications for different companies on the same server. Any help would be greatly appreciated. - krebsnet

    First of all...
    My test environment is Tomcat 4.1.24 and it runs on port 80 as my webserver as well.
    I can place the .jsp (or .html) in the shared folder. Not in the lib or class folders but right in the shared folder. I can then call it from multiple contexts without using the context path. Just tested it a minute ago. For example I have test.jsp in the shared folder and loaded it from two separate contexts (one named /demo and one named /inetapps) by calling Load test. It loaded in both of them and neither contain a test.jsp file.

  • How to show real file name on file download box when the file is downloaded

    Here is my procedure for downloading from Oracle database to the client, the file is stored in a Blob field, a DAD was defined with no errors, in fact the upload works with no errors. The files are in text format, the field MIME_TYPE has the value 'text/plain' and DAD_CHARSET is ascii.
    PROCEDURE download(p_filename IN VARCHAR2) IS
    BEGIN
    wpg_docload.download_file(p_filename);
    EXCEPTION
    WHEN OTHERS THEN
    htp.p(sqlerrm);
    RETURN;
    END;
    All functions are runing well, in fact it downloads with no errors but the file name that is suggested is the name of the package where the procedure es saved.
    How can the real file name be showed on here? it is the parameter p_filename
    I am using IE 6.0 SP 2, Oracle 10g Enterprise Edition Release 10.1.
    Thanks for help
    Yuri Lopez

    I forgot something, i am using Forms [32 bits] Versión 9.0.4.0.19 and using web.show_document with a call to the procedure in the DB

  • How do you fix error message "data rate for this file is too high for DVD.  You must replace this file with one of a lower data rate".

    When trying to burn a DVD it will go through the encoding step and at 98% we see the message 'data rate for this file is too high for DVD.  You must replace this file with one of a lower data rate".  We need help to correct this so we can complete burning to DVD. 

    What did you export from Premiere?
    Did you use the MPEG2-DVD preset... and did you make any changes to the preset?
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 may help

  • Replace a file which has a specific ID with another one

    I want to replace a file with another one using JSOM, but preserving all other associated fields (like Author and other custom columns in the document library)
    How can I select the file I want to replace using the ID field?
    For example, when I update a regular List Item, I use
    this.oListItem = oList.getItemById(the_given_ID);
    oListItem.set_item('Title', value);
    How can I do that for a file?
    I want to replace the file, not to update its content!
    Thank you!

    Hi,
    Per my understanding, you might want to replace the file in a library with other associated fields preserved using JavaScript Client Object Model.
    There seems no direct way can achieve what you want, as a workaround, you can upload the new file into this library, get the values of the associated fields from a
    specific item and populate them in the current item, then delete the original file from this library.
    By doing this, the original file will be deleted, a new file with the same properties will appear with a new ID.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Question about replacing corrupted file in windows 7

    hi,
    I read in windows 7 bible that if a system file is corrupted , I can replace it with system recovery tool (at command prompt) if I have onother computer with windows 7 installed. 
    my question is here , if I replace any file with copy the file from computer to dvd and replac it on my computer ,  does the windows version must be the same for 64 bit or it doesn't a matter.
    thanks
    johan
    h.david

    Hi,
    Yes, the version must be the same. You may be able to get a known good copy of the system file from another computer that is
    running the same version of Windows with your computer. For different versions there may be different configuration settings in the files that you operating on which if replaced with the wrong version might cause new issues.
    More information regarding How to manually replace a corrupted system file with a known good copy of the file, please check it in the link:Use
    the System File Checker tool to repair missing or corrupted system files
    Hope this may help
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Does dv6-6153cl support SATA III HDDs?

    I'm having trouble with my laptop and I think I've narrowed the problem down to the HDD. I want to replace it, and upgrade it, but I'm not sure what HDDs I can use. I'd like to know if I can install a SATA III HDD into my dv6-6153cl laptop. From what

  • Problem in completing the TASK when using Web Dynpro Java and BPM

    Hi, I am using Web Dynpro Java and BPM. i see my Web Dynpro View when i run the process. Just that the task is not completing. when i click on the Web Dynpro button to signal the completion of the event, nothing happens. i have appropriately created

  • Failed with buying IMovie?

    Failed while buying IMovie Since 2 days i have lost like €3,99. This all because of buying IMovie on my Computer/Laptop. I was buying the app and suddently something went wrong. I lost my €3,99 and did not recieve the app at all. Can someone please h

  • LoadMovie working in Flash Player, but not when posted online

    I have built a website utilizing Dreamweaver and Flash. This page: http://www.tonystubbs.com/print.html has a link under "print" called "catalog". It is supposed to load a swf file when clicked. It works when I view it in Flash Player, but when I imp

  • 2 jump targets in one Query

    Hi, is there a way to define 2 jump targets in one query. For example you have 10 Lines, and the first 5 have one jump target if you click on a field and will jump to queryT1 and the last 5 lines have another target for the field and will jump to que