Missing files from desktop

I accidentally removed the 'Home' directory from my Darwin /Users/myid directory. Now I still have a /Users/myid/Desktop directory containing all my desktop files but I can't see the icons on my monitor visual desktop (on the top of the desktop background). Also when I open my home directory on Finder, the Documents and Movies folder do not have the customized icons I was used to see before. All the folders have the same generic icon.
How can I reset the desktop?

agiannetti wrote:
I wanted to change my user name from the finder and from there I started having all sort of problems. I think what happens is that Mac OS can't find the .DS files and the Library folder under the new user name home directory.
The Finder shouldn't let you change the home directory name without a warning, I think.
That would probably be a good idea! I thought maybe you weren't meant to be able to do this so I just tried it and it really does just let you do it. Odd. I almost immediately regretted the experiment, too, and accidentally deleted a bunch of hidden files trying to recover... (Backups are very handy at times!)
I wonder if non-admin users can do this. I suspect not.
The problem is that the name of your home directory does not determine your user name. Rather, your (short) user name determines the name of your home directory. If you move your home directory, it is no longer your home as far as the computer is concerned. Viewing you as now homeless, it helpfully tries to give you a new shelter.
If you really want to change your short user name, there are safe ways of doing so but you either need to do a little bit of work to make sure it is done properly or you can use one of the utilities which can do all of that for you. If you wait a little, somebody who knows about those utilities may come along and suggest one. Never having used one myself, I cannot make any recommendations.
You may find these instructions helpful in recovering your home etc. It also contains pointers to instructions concerning ways to change your short name safely.
- cfr

Similar Messages

  • How to upload file from desktop or C drive and send as attachments

    Hello Experts,
    Please tell me
    How to upload jpg or gif or drawing files from desktop or any drive and store into R/3 by the same time I have to send mail as a attachment.
    I heard that FM
    SO_NEW_DOCUMENT_ATT_SEND_API1  is only to send as a  attachment what ever the data is present in the internal table only.
    please help me on that.

    I m using this code its having attachment but I m not able to open the file. Please help me
    I m using gui_upload to upload the file
    PROGRAM  ZTEST
           no standard page heading line-size 255.
    DATA: xfile TYPE string.
    data :     t_IW51 LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    data :  email type table of BAPIADSMTP.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file.
      xfile = file.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = xfile
          filetype            = 'ASC'
          has_field_separator = 'X'
        TABLES
          data_tab            = t_IW51.
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Send External Mail'.
    Mail Contents
      OBJTXT = 'Minimum bid : $250000'.
      APPEND OBJTXT.
      OBJTXT = 'A representation of the pictures up for auction'.
      APPEND OBJTXT.
      OBJTXT = 'was included as attachment.'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
    *OBJBIN = ' \O/ '. APPEND OBJBIN.
    *OBJBIN = ' | '. APPEND OBJBIN.
    *OBJBIN = ' / \ '. APPEND OBJBIN.
      OBJBIN[] = t_IW51[].
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'PICTURE.PDF'.
      APPEND OBJHEAD.
      OBJBIN[] = t_IW51[].
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'PDF'.
      OBJPACK-OBJ_NAME = 'PICTURE'.
      OBJPACK-OBJ_DESCR = 'Representation of object 138'.
      OBJPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
      RECLIST-RECEIVER = 'email_id have to enter here'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
      RECLIST-RECEIVER = 'ENTEG01'.
      RECLIST-REC_TYPE = 'P'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
         DOCUMENT_DATA = DOC_CHNG
         PUT_IN_OUTBOX = 'X'
         commit_work = 'X'
      TABLES
         PACKING_LIST = OBJPACK
         OBJECT_HEADER = OBJHEAD
         CONTENTS_BIN = OBJBIN
         CONTENTS_TXT = OBJTXT
         RECEIVERS = RECLIST
    *EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      OPERATION_NO_AUTHORIZATION = 4
    *OTHERS = 99.
      CASE SY-SUBRC.
        WHEN 0.
          WRITE: / 'Result of the send process:'.
          LOOP AT RECLIST.
            WRITE: / RECLIST-RECEIVER(48), ':'.
            IF RECLIST-RETRN_CODE = 0.
              WRITE 'The document was sent'.
            ELSE.
              WRITE 'The document could not be sent'.
            ENDIF.
          ENDLOOP.
        WHEN 1.
          WRITE: / 'No authorization for sending to the specified number',
                   'of recipients'.
        WHEN 2.
          WRITE: / 'Document could not be sent to any recipient'.
        WHEN 4.
          WRITE: / 'No send authorization'.
        WHEN OTHERS.
          WRITE: / 'Error occurred while sending'.
      ENDCASE.

  • Cannot delete .band files from desktop

    I was working on a file in GarageBand, I saved the .band file on my desktop, but after I quit GarageBand without saving the work, the .band file went a little weird. I tried dragging it to the trash and cmd-delete it but the message came up saying "The item “Recording Final.band” can’t be moved to the Trash because it can’t be deleted." Later I launched GarageBand again, and when I tried to drag the weird .band file from desktop to the GarageBand icon on my dock, the dock appears to crash, my wallpaper went gray for a second and then the dock came back up. Also when I select the file and hit space bar to do a quick look it shows up saying No Items Selected. I like to keep my desktop tidy don't want these files here blocking the way. Anyone knows the solution to the problem?

    The first thing I'd do is just restart your system. You might find the file has disappeared. If not, try deleting it again. If you get the same error msg, do as follows.
    Enable 'show path bar' in Finder > View. Highlight the problem file and make a note of the path.
    Open Terminal and use the
    rm <path to file>
    command to remove it (remove the angled brackets). If you want to be on the safe side, use the command
    cd <parent directory of file>
    to move into the correct folder first.
    Example
    Suppose the path is:
    Lion > Music > Garageband > problemfile.band
    In Terminal, you'd type
    cd ~/Music/Garageband
    Then type
    ls -l
    Assuming you see 'problemfile.band' in the list, type
    rm problemfile.band
    If you get an error, try
    sudo rm problemfile.band
    and enter your admin password (which will be invisible when you type it).
    If you still get an error msg, post back here, stating the error msg.

  • Cannot Delete CPTL file from Desktop using Vista

    Hi All,
    I cannot Delete CPTL file from Desktop using Vista. Explorer
    crashes. It is a Captivate 2 file.
    I have tried (with no luck):
    - logging in as a different user and deleting the file.
    - running explorer as an Administrator
    - uninstalling Captivate.
    Anyone got any ideas?
    Cheers,
    Raef

    Hi Raef,
    That is a strange issue. Here are a couple more ideas you
    could try:
    - Have you tried renaming the file (including suffix)?
    - Have you rebooted?
    - Do you get any error messages when trying to delete, such
    as "Acess Denied"?
    - Is your machine networked? Is it possible someone else has
    the file open?
    - Can the file be moved to another location or put in a
    folder (and then deleted)?
    - Have you tried using the Command Prompt / DOS mode to
    delete the file?
    It sounds like it could be a Vista issue so I would look at
    the Microsoft Vista forums too. Sorry I do not have an exact
    answer.
    IHTH,
    Aaron

  • [svn] 4918: Missing file from previous checkin.

    Revision: 4918
    Author: [email protected]
    Date: 2009-02-10 13:56:12 -0800 (Tue, 10 Feb 2009)
    Log Message:
    Missing file from previous checkin.
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/djapi_en.propertie s

    Here are typical layouts for the iTunes folders:
    The iTunes folder is normally inside <User's Music>. I get the idea that things are different but I don't have a clear picture yet. I think you've somehow managed to get the media folder pointed at <User's Music> instead <User's Music>\iTunes\iTunes Media. A screenshot of the iTunes > Edit > Preferences > Advanced might help confirm. Once we know what is going on it should be possible to make suggestions as to what to do next.
    tt2

  • [svn:osmf:] 10584: Adding a missing file from that last folder structure refactor.

    Revision: 10584
    Author:   [email protected]
    Date:     2009-09-24 17:19:48 -0700 (Thu, 24 Sep 2009)
    Log Message:
    Adding a missing file from that last folder structure refactor.
    Added Paths:
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/AkamaiBasicStreamingPlugin.as

    Hello,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is about ASP.NET web application development, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    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 Upload pdf or ppt files from desktop to some learning object

    Hi All
    I have a query, How to Upload pdf or ppt files from desktop to some learning object, do I need to have content server for same?

    Hi,
    This is standard functionality, that you can read more about in the OLM User Manual. You can upload the files to an OLM content server or to any other content server that can be accessed with a URL.
    Regards Anders Northeved

  • Picking a File From Desktop

    Hi,
         I am having a scenario of LSMW in which i have to pick the flat file from desktop.This I need to take throuh a PORT ie we21, For this which type of  port i have to choosse?
    Regards,
    Vijaya Lakshmi

    Hi,
        My File is on the Application Server and it is in the .txt Format. How Could I do This Using The XML Port. Other I have Seen that in the Port Type XML HTTP content type is .TXT/XML but it is asking for the RFC Destination. Can we find the RFC Destination for the application Server.How could I get This.
    Thanks and Regards,
    Vijaya Lakshmi.T

  • Deleate missing files from catalog

    With DSLR cameras we shoot tens of thousands of pictures a year and delete hundreds from our hard drives over time.  So how do you delete hundreds of missing missing files that still exist in the catalog, which cause the "Reconnect Missing Files" screen to show?  Does a setting exist to remove all missing files from the catalog?

    In PSE11, do Find >> All Missing Files and select all and delete.
    Thanks
    Andaleeb

  • Recover missing files from FAT32 SD card?

    I got back from a trip and used the SD card slot in my MacBook Pro to import my photos -- first into Aperture, and then using Image Capture to make a second copy as regular image files. Then I used Image Capture to delete the files from the card.
    So far, so good....except nearly 300 photos have are missing -- the last 300 I took on the card. If I look at the card in the Finder now (it's FAT32), there aren't any photos on it. But there is still over 3GB of data, suggesting the missing photos' data is on there somewhere.
    Any suggestions for how to recover it? TechTool Pro doesn't see the card at all (maybe doesn't support FAT32?).
    Thanks.

    You can follow the way to see how to recover deleted files from sd card. Connect the data cable for the card reader to an empty USB port on your computer. Insert the SD card into the external or built-in card reader. Right-click the Recycle Bin icon on the desktop, then click "Open." Highlight and select the deleted files on the SD card you want to restore to the device. Right-click one of the selected files on the SD card and then click "Restore." Besides, you can also use Data Recvoery to restore your data even your SD card is damaged.

  • Why do I have Missing files from LaCie to Elements 9 Organizer on Mac

    I am a new Elements 9 user and have a Mac OS 10.6.5.  I have attempted to load all my pictures from a LaCie external hard drive into the Organizer, but when I look at them in the Organizer very many of them indicate that the files are missing.  I have not renamed the files, nor have I moved them since they have been in the LaCie.  What in the world am I doing wrong!!!???

    When I first moved pics into the Organizer, some were in folders on my laptop, some in the LaCie, some on the desktop etc.  I did subsequently move all pics into the LaCie from the various places, and then moved them again into the Organizer.  Maybe that confused the situation.  Should I remove all images from the Organizer and then  get all files from the LaCie once more? 
    Louise Giovanella
    1530 Hopkins Road
    Panton, VT 05491
    v: 802-759-2529
    [email protected]

  • Unable to delete file from desktop

    I'm trying to delete a .mp4 file from my desktop. On doing so I'm first prompted to enter the password in a window 'Finder wants to make changes. Type you password to allow this'. After doing so I get the msg 'the operation can't be completed because you don't have permission to acess some of the items'.
    I have checked the permissions in the get info tab and it has read and write acess.
    Kindly help me with the issue.

    Hi Niel,
    Thanks for the quick reply. M sorry by mistake i clicked on 'This helped me' .. hw can I change it to 'this solved my question'.
    Well I was stuck as I was trying to lock unlock general properties of the file whereas my desktop general properties was in locked state.
    Quite new to the mac..getiing used to it.. thanx a ton !!..

  • Delete a .csv file from desktop system

    Hi All,
    My requirement is to read the .csv file from the desktop system having the shared folder and delete the file after read successfully.
    Here I can read the .csv file from the location using the function RFC_REMOTE_FILE and updated the content into internal table.
    But I cant delete the file from the presentation server ( Desktop system).
    Can anyone tell me how to delete the .csv file from the desktop system on different location.
    Note:
    I followed this link to read file:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2&overridelayout=true

    Hi Rob,
    Thanks. I solved this problem myself.
    The solution to delete the file from remote system is
    concatenate 'DEL' i_filename i_dirname into v_bkfile separated by space .
    call function 'RFC_REMOTE_EXEC'
      destination  c_dest
      exporting
        command               = v_bkfile
      exceptions
        system_failure        = 1  MESSAGE v_ermsg
        communication_failure = 2  MESSAGE v_ermsg.

  • Cannot copy file from desktop to media card

    Whenever I try to copy a file from my desktop to my media card I get an error. When I use the desktop manager software I get the message 'one or more files cannot be copied: FILE_NAME'. When I use Windows Explorer to try the same thing I get the message 'Cannot copy FILE_NAME: parameter is incorrect'.
    I do have a proper connection from the desktop to the blackberry because I can open files on the media card and update them. I just have the problem copying the files.
    I have been able to copy the files from the desktop to the device memory. Then move it from the device memory to the media card. But there should be no difference between the device memory and the media card.
    Note: The file I am trying to copy is a data file (.PDF). While I was having the same problem with music files, I found if I went into advanced parameters from desktop manager and specified the audio file type & bitrate I was able to copy the music file without errors.
    I have a blackberry curve 8300
    16GB media card

    When I try to move the files from the Finder Window with the files on the DVD, I do not get the plus sign when I try to drag it to the desktop or any other window. Even when I try with the option key pressed, there is no plus sign with the mouse arrow. Someone suggested to use the terminal and I did. It was a hassle, though.

  • Cannot delete files from desktop

    I run the latest version of Lion OS, on a MacBook Pro. All software is maintained and updated. I have a couple of files on my desktop, which cannot be deleted. They are BACK-UP files from Keynote and PowerPoint. The files cannot be moved (physically on the desktop, they stay put), and TRASH is not accepting them;
    The item “Backup of Wholesale Sales Meeting Sea Island-powerpoint.key~1” can’t be moved to the Trash because it can’t be deleted.
    Any idea on how to delete them permanently?
    Thanks

    Hello Denis Post1
    You could remove it with the Terminal (Applications > Utilities).
    Enter the following command (copy & paste) followed by your password, you will not see nothing, while entering it and then <enter>
    sudo rm ~/Desktop/*
    for the files you confirm with a simple "y" they will be deleted. If you want to keep some other files type "n"
    hope this helps
    marek

Maybe you are looking for

  • PROCESS_HEADER not fired in BADI ME_PROCESS_PO_CUST

    Dear experts, I face the problem, that the method PROCESS_HEADER of BADI ME_PROCESS_PO_CUST is not fired, when I am changing po header text. My requirement is to set a customer po header field, whenever a po header text is existent. Does anybody know

  • How to use package in PL/SQL

    HI, How to create a pachake in PL/SQL. how can we atore the sql files in a package. expalin about the package concept in PL/SQL

  • Query Change

    Hello - We would like to add two data columns to this Query below -- 1. Foreign Name and 2. BP Properties #1 (all accounts that have BP Properties #1 selected, regardless of transaction). Help? SELECT T0.CardCode 'Acct #', T0.CntctPrsn, T0.CardName C

  • Just published my podcast, but the artwork is not showing up.  How can I make this magic happen?

    I just recently published a podcast, and since the name is similar to many others, the artwork will be critical in allowing others to find it.  How can I make it visible?

  • Error while configuring owb respository

    i have oracle 9i v. 9.2.0.1.0 at server side and i have installed client for this at one cleint now whie i have tried to install owb 10g cleint at cleint pc and configure repository at client then it gives error after 94 % like the warehouse builder