Empty folders cannot be deleted in launchpad

It seems it has become impossible to delete empty folders in the launchpad or in dashboard's widgets. Anyone having this problem too? How to resolve it?

Just Relaunch your Launchpad
Open Terminal
Copy and paste this commands on your terminal and hit return at the end of each line
defaults write com.apple.dock ResetLaunchPad -bool true
killall Dock
hope that helps,
05202

Similar Messages

  • Can't delete empty folders from NAS

    Hi all
    I have Mac Book Pro running Mavericks, and a WD World Book running as a NAS on my private network.
    Recently, I've been restructuring my files and folders on both my mac and hard drive.
    Having moved a large number of files across from the HD to my Mac, I now have a load of empty folders on my HD that I cannot seem to get rid of!
    I have tried all the usual things, and also the rm -r command but to no avail. It says that the folder does not exist!
    One other strange thing that is happening on the HD, when I 'Get Info', the top username in permissions is just saying 'fetching' and never resolves.
    Does anyone have any suggestions??
    Let me know if you need more info
    Thanks in advance

    Yes, it one of the problems you can encounter using Launchpad at the moment. You can try to drag another app in the folder and empty the folder again. Sometimes that folder disappears, sometimes not.
    There's a way to rebuild Launchpad but I won't not recommend that. It will bring Launchpad back in the default-setting, so you would have to start rearranging all over again, at the risk of having the same problems all over again.
    So, just wait until the first update of Yosemite comes out. That might solve your problem. If the empty folders bother you, you could try to drag them to a new last page, so they are out of sight for now.

  • Folders on desktop vanishing/Empty folders not deleting

    Heyo, all
    I've come across a wierdness on my Mac and I'm stumped as to how to deal with it.
    I have a folder on my desktop that I can rename and move to the trash but that I cannot delete. It shows as empty in the Finder and via Terminal but still tells me that it is not empty and will not delete. Also, any time I put any thing into this folder it will vanish. It's still there if I look via terminal but does not display via Finder. It will show up if I reboot then vanishes again when I try and do anything with it. For example, if I open the folder, it will display an empty folder, then vanish.
    At first it was just an annoyance but now another folder has taken on the same characteristics. I'm not sure of what is going on but this disturbs me, greatly.
    I have tried applications that are supposed to force delete items but have failed to achieve success.
    Any advice on how to get rid of these folders and restore the integrity of my desktop would be appreciated!
    Thanks,
    V

    Since you mentioned that you looked at it with the Terminal, I will take the liberty to respond with a Terminal solution.
    Open the terminal and type the following:
    sudo rm -Rf ~/Desktop/<StrangeFolder>
    and press enter. Of course, substitute the name of your strange folder(s) for "<StrangeFolder>".
    This command will definitely remove those folders. Make sure you have it exactly right. This is one of those commands that will do exactly what you tell it. If typed incorrectly (such as with an extra space or something), it can and will remove your Desktop and entire home directory. Years ago I deleted (half) my home directory at work this way. Luckily, we had backups. You've been warned.
    "With great power comes great responsibility"

  • Cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items"

    I cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items".  Macbook Pro, 10.6.8

    Maybe the items are locked.
    Mac OS X 10.6 Help: Shortcuts for working with items in the Finder
    Shortcuts for working with items in the Finder Command (⌘)-Shift-DeleteEmpty the Trash without any warning or when it contains locked filesCommand (⌘)-Shift-Option-Delete
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/cdb_cpmvfky.html

  • I have 40 empty folders in my mailbox on ipad 3. They are shown on the left hand side of my mailbox screen.I have tried to delete them but they keep re appearing should they be there or can anyone tell me how to delete them. .

    I have 40 empty folders which have appeared in my mailbox. I have tried to delete them using the edit button but they keep coming back. I have done a factory reset to start my ipad as new but this has not removed them. They have now appeared on my wifes ipad air. Can anyone help please.

    Hi Go to Settings Email Accounts Delete Accounts Then add them back again. If that doesn't work Do a Factory Restore. Cheers Brian

  • Deleting Empty Folders from Library

    When I first got Lightroom I uploaded a random bunch of folders of images. Now I wish to upload everything (which I have put into a single folder) so that I can retain the hierarchy of folders within folders that I have developed for storing my work on a dedicated hard drive.
    I therefore selected all of these random folders of images and removed them from the Library (it took 45 minutes). But now I find that while all of the image files have been removed, all of the empty folders that contained them are left in the "Folders" folder in the library.
    My question is, how can I remove all of these empty folders prior to uploading my hierarchical folders of files? In other words, how can I start over again from scratch? (I have upgraded to Lightroom 1.1)
    Thank you.

    Thank you all for your suggestions. What I finally did was to right-click, as suggested by Mel, on each folder (it wouldn't work for me when I selected them all) and select "delete" from the resulting drop-down menu. It took awhile, as there were a lot of the buggers, but now I'm clean and ready to go!
    Again, thanks.
    Rodger

  • I am anew user. Initially I created several folders for my photos but now know how to transfer photo folders using iTunes. However I am unable to delete/remove the now empty folders I created in iPad.

    I am anew user.
    Initially I created several folders for my photos on the iPad itself but now know how to transfer photo folders using iTunes. However I am unable to delete/remove the now empty folders I created in iPad.
    Can anyone assist me please
    Thanks

    When you are in Album view in the Photos app - tap the edit button in the upper right corner - tap the X in the corner of the album to delete it.

  • Help - AppleScript to delete empty folders

    I have been trying to create an AppleScript that will let me clean directories of empty folders. I have scoured the web and developed the following script. It doesn't work. I have a simpler script but it requires that I enter my admin password everytime that a folder is identified to delete. I'm trying to develop something that only requires me to enter the admin password once. Can someone help me identify the problem with this script?
    on killEmpty(fol)
      tell application "Finder"
      repeat with f in (get fol's folders)
      my killEmpty(f)
      end repeat
      if (count items of fol) is 0 then do shell script "rmdir" with administrator privileges
      end tell
    end killEmpty
    tell application "Finder"
      repeat with f in (get folders of window 1)
      my killEmpty(f)
      end repeat
    endtell

    Hi,
    If you need an administrator's password, use a command in a do shell script to find and delete all empty folders, like this script:
    tell application "Finder" to set tDir to quoted form of POSIX path of the ((target of Finder window 1) as string)
    set pScript to quoted form of "from os import walk; from sys import argv; from shutil import rmtree; import glob
    for dirpath, _, _ in walk(argv[1], topdown=False):
        if not (glob.glob(dirpath + '/*')): rmtree(dirpath)"
    do shell script "/usr/bin/python -c " & pScript & " " & tDir with administrator privileges

  • How to delete empty folders on iPod Touch iOS 4.2.1?

    I just updated my iPod Touch 2gen to 4.2.1 and while organizing the apps via iTunes, it kept creating folders named 'Games' and 'New Folder.' How the heck do I delete these? They're empty, I've tried rebooting my iPod and I've tried putting in apps and emptying them again.

    When a folder is empty it should automatically delete itself.
    try restarting it by holding the lock and middle button, together for 10 seconds
    Kayley Anne

  • Launchpad keeps emptying folders and won't keep organized. Mavericks. What's up?

    Launchpad keeps emptying folders and won't keep organized. Mavericks. What's up?

    It sounds as though it needs a service call.
    You could try booting in safe mode (hold the shift key down and boot) - but it probably won't get that far.

  • Export-Mailbox for legal discovery remove empty folders

    Hi Everyone,
    I'm having a bit of an issue with running an export mailbox search for a legal discovery that we need to perform. Basically we need to find any messages sent from two specific addresses to anyone within our company and export them to a mailbox for our legal
    team to review. The problem that i'm running into is that the export-mailbox command copies the folder structure for each mailbox that it searches to the target mailbox. When the legal team attempts to open the mailbox its taking an extremely long
    time for the target mailbox to open. 
    Is there any way to run the export-mailbox command and have it not copy the folder structure for users that have no messages related to the search ? I haven't been able to find anything about a command line option to not create empty folders so i'm assuming
    this isn't a built in feature. If not has anyone had to deal with this issue before, if so what solution did you use to delete the empty folders folders in the target mailbox ? 
    We are running Exchange 2007 SP1

    Hi Ragharam,
    Thank you for the response. Unfortunately the command cannot be limited to just the inbox as i must search deleted items and any folders that the users created as well as the inbox. Pretty much i have to search every where for any existence of
    these messages.  I'm running a command that is similar to what you listed above and the export is working the problem is that we have roughly 5000 user mailboxes that we need to search. Since the export-mailbox command creates a folder for each
    user that has been searched in the target mailbox and that folder contains each users folder structures the resulting mailbox or PST file pretty much just hangs the Outlook client as soon as its opened. 
    My hope is that there would be some way to only create folders for users that have matches to the search filter and not for the users that do not match or some way to delete the empty folders within the mailbox without having to open it. 

  • File does not exist, or file is empty; you cannot upload empty files

    Hello,
    I've a problem when trying to upload any file to KM Repository (Content Administrator-KM Content-Root-documents). It shows the following error: File does not exist, or file is empty; you cannot upload empty files.
    I have applied SAP note 898637 but is still not working. We're using SAP EP 7.0 SP11.
    Please, what could be the problem?
    Thanks in advance,
    Belé

    We've put the Java paremeters in Configtool.bat :
    -Djava.io.tmpdir=c:/EP_TEMP
    -Dcm.tmpdir=c:/EP_TEMP     
    In Server/Instance. Folders: Message Server&BootStrap and in Servers General and in Instances/Server.
    I hope this helps you,
    Regards

  • How do I search for and remove empty folders?

    I would love any help. I've spent about 6 hours yesterday looking for a solution for this project...
    PROBLEM:
    I'm trying to organize a 6GB file library of sheet music documents.
    After using Gemini to find and delete duplicate files, I'm left with hundreds of empty folders and files spread across the folders in odd locations.
    How do I find and delete all the empty folders?
    My hope is to remove all the empty folders and then manually reorganize the files.
    This will probably take quite a few hours.
    Here is an example of the mess. The folders currently look something like this:
    Music Library 1 > Kids Songs > Easy > Empty Folder
    Music Library 2 > Kids Songs > Easy > "Ode To Joy.mus" and other files are here
    Music Library 3 > Kids Songs > Intermediate > Intermediate songs files are here
    A better / larger question might be - What is the best way to organize this mess?
    Is there a good file manager for organizing these documents? We run a music school and are trying to set it up for multiple teachers to organize their files and sort by a few different tags like: Difficulty, Genre, Teacher Name, Composer name etc.
    Thank you so much for any help!

    I'm afraid the ability to find empty folders is a wee bit complicated, and quite simply is completely broken in Mavericks. Just because a folder appears to be empty, doesn't mean that it is--if it was ever opened it will have an invisible .DS-Store file inside. For instance, in Snow Leopard if I do a search on the Desktop folder for Kind is Folder, plus Number of Items is less than two, I get two folders, both are empty but one I just created and never opened, and the other I created some time ago and later tossed the contents, which means that it has a .DS-Store file. Both show "No Items" in Icon view. If I modify the Number of Items to "equals 0" only the newly created and unopened folder "empty" shows up. If I try the same thing in Mavericks I get no sensible results at all in any set of search parameters.
    The moderator at Houdah Software reports: "Spotlight on Mavericks reports a value of 1 for "Number of Items" (kMDItemFSNodeCount) for all folders." He says he has reported it as a bug. Evidently it is not yet fixed.
    Francine

  • Exchange 2007 Public Folder Database cannot be deleted

    We are in the process of decommissioning exchange 2007 server from 2007 <-> 2013 coexistence.
    All user MailboxDatabases have been sucsessfully removed, however PF Mailbox databases return an error. 
    “The public folder database 'Public Folder Database' cannot be deleted”
    Object is read only because it was created by a future version of Exchange: 0.10 (14.0.100.0). Current supported version is 0.1 (8.0.535.0).
    I am suspecting the presence for 2 OAB is the reason why we can’t delete Public folder database from 2007 server.
    Get-OfflineAddressBook on 2007 returns
    Name               
    Server             
    Versions           
    AddressLists
    Default Offline ... ex07                
    {Version4}         
    {\Default Global...
    Default Offline ... Offline Address ... {Version4}         
    {\Default Global...
    Get-OfflineAddressBook on 2013 returns
    Name                                   
    Versions                               
    AddressLists
    Default Offline Address Book           
    {Version4}                             
    {\Default Global Address List}
    Default Offline Address Book (Ex2012)  
    {Version4}                             
    {\Default Global Address List}
    Questions:
    How can I check if both exchange servers are still OAB generation servers?
    I am not sure if the previous service provider moved OAB,  can I potentially cause any problems by executing  
    Get-MailboxDatabase | Set-MailboxDatabase -OfflineAddressBook "\Default Offline Address Book (Ex2013)"
    Move-OfflineAddressBook -Identity "Default Offline Address Book" -Server EX13
      3. Is it safe to delete 2007 OAB ?
    Thanks

    Default and System public folders show up under PF Management Console, however their preview pane on the right says "There are no items to show in this view" for both of them.
    below is the output from Get-PublicFolderStatistics on ex07
    Name                                     ItemCount              
    LastAccessTime
    Marketing                                   479              
    1/4/2014 10:15:14 AM
    Default                                  0                
    3/16/2014 1:34:35 PM
    EX:/o=First Organization/ou=Exchange Adm 2                 3/13/2014 1:00:00 AM
    inistrative Group (FYDIBOHF23SPDLT)
    EX:/o=First Organization/ou=Exchange Adm 0                 3/13/2014 1:00:00 AM
    inistrative Group (FYDIBOHF23SPDLT)
    exchangeV1                               401              
    3/16/2014 1:34:35 PM
    globalevents                             0                
    3/16/2014 1:34:35 PM
    internal                                 0                
    3/16/2014 1:34:35 PM
    Sales                                     713              
    1/4/2014 10:15:15 AM
    microsoft                                0                
    3/16/2014 1:34:35 PM
    OAB Version 2                            0                 
    1/4/2014 4:09:49 AM
    OAB Version 3a                           0                 
    1/4/2014 4:09:49 AM
    OAB Version 4                            0                 
    1/4/2014 4:09:49 AM
    OWAScratchPad{8382AFC4-6D63-4804-AC49-7B 0                 3/16/2014 1:34:35 PM
    4FDA2A4514}
    schema-root                              0                
    3/16/2014 1:34:35 PM
    Accounting                                 953              
    1/4/2014 10:15:16 AM
    StoreEvents{8382AFC4-6D63-4804-AC49-7B4F 0                 3/16/2014 1:34:35 PM
    DA2A4514}
    /o=First Organization/cn=addrlists/cn=oa 0                 3/13/2014 1:00:00 AM
    bs/cn=Default Offline Address Book

  • Folders and duplicates everywhere; empty folders... a mess in the Library

    I am tired of iPhoto's difficulty to use as soon as you modify pix and try to move pix from a computer to another.
    It creates tones of duplicates files, empty folders and doesn't even recognize px it already imported.
    I have the same pix floating everywhere.
    THen i tried to delete some folders and files and some pix are now 'offline'.
    Any trik other than don't mess with iPhoto, don't modify your pix and don't move them from one computer to the other one.
    Help!

    xavier
    iPhoto is a database. Think of it this way. When you use iPhoto it's like hiring a filing clerk and giving them your shoe box full of photos. "Take these and sort them out so that when I ask for one, you can give it to me, and fast." So the Clerk sets up his filing structure, then goes home for the evening and you go into the filing cabinets and move things around. Next morning, it is any wonder that the Clerk can't find things?
    So here's tip one: It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss.
    You do everything you need to do via the iPhoto Window - and the good news is that everything you need to do can be done from there. So, ignore the iPhoto Library Folder. There are no user serviceable parts in there.
    Want to access a file: There are three ways (at least) to get files from the iPhoto Window.
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser. Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Also, for 10.5 users: If you use the extended Open or Attach dialogue (with Column View) you can scroll to the bottom of the Shortcuts and find the Media browser there. Select any pic you want from there.
    Want to use a photo editor? You can set Photoshop (or any image editor)as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically.
    FYI: This might explain how the iPhoto Library Folder is laid out: A Note about the iPhoto Library Folder:
    In this folder there are various files, which are the Library itself and some ancillary files. Then you have three folders
    Originals are the photos as they were downloaded from your camera or scanner.
    (ii) Modified contains edited pics, shots that you have cropped, rotated or changed in any way.
    This allows the Photos -> Revert to Original command - very useful if you don't like the changes you've made.
    (iii) Data holds the thumbnails the the app needs to show you the photos in the iPhoto Window.
    Regards
    TD

Maybe you are looking for

  • Trouble with my Apple ID on multiple devices

    I am having trouble with my Apple ID when downloading app updates.  I go to update my Apps, but the Apple ID for a seperate iPod, that I also sync with this computer, is what appears when the password is requested.  I checked the account in Settings

  • Refresh rate prob w/gf4 4400

    For some reason, when I go into properties and select the monitor tab so that I may change refresh rates, the window freezes, and it never displays options, and I have to kill it. I'm running win2k and just updated to the latest drivers.  If someone

  • HT3226 Home button of my iPhone not responding quick. What should I do ?

    Home button of my iPhone not responding . What should I do?

  • Windows 7 Thinkvanta​ge Access Connection​s 5.41 does not stick to printer default

    hi i have installed windows 7 on 3 lenovo laptops (x60s, x61, t500) and installed AC 5.41 but and have configured them with 5 profiles each with their own default printer preferences but for some reason when i toggle from 1 profile to another the def

  • Using exists with dual

    I was execting the following query to be cost-effective but the the select from dual shows a cost of 17. The inner query accesses a view. SELECT 1 into x FROM DUAL WHERE EXISTS ( SELECT 1 FROM data_v WHERE project_id = 9031 AND empid = 497681 AND rol