How to hide unhidden files

Okay, so I would like to HIDE files which were recently changed thru Terminal to UNHIDE them [I want to put my mac back to normal where files are hidden again]
I used this simple algorithm in Terminal to unhide all files which now show up everywhere on my Mac [I needed to temporarily have them unhidden]
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Does anyone know how I get now get my Mac back to NORMAL where these files are hidden again?
Thanks for any help guys

defaults write com.apple.Finder AppleShowAllFiles NO

Similar Messages

  • How to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    how to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    Within Aperture you have Images, which are constructed on-the-fly from two files (the Master and the Version).  You get an image-format file _only_ when you export an Image.  You select the file name (usually a scheme) when you create an image-format file (that is, when you export).  Look under "Aperture→Presets→File Naming" for built-in Presets.  You can, of course, create your own or customize any provided.
    The Preset is applied to only the file newly created by your "export" command.  It is not applied to the Image in Aperture (unless you rename your Versions or your Masters).

  • How to Hide "Hidden Files"??

    This is a question that has stumped AppleCare when I called them last week, and the "Geniuses" at my local AppleStore yesterday....So, throwing it out here. On upgrading my new 17" MBP last week to Snow Leopard I discovered the Finder was showing a lot of System files that normally are "hidden". IE: bin, cores, etc, mack kernal, tmp, usr, var. The regular way of dealing with these files is to make them "hidden" with a Terminal command, but that didn't work. I reinstalled Snow Leopard twice, that didn't work, the Genuis applied a Widget to hide the files, that didn't work either. Somehow the Snow Leopard installation has labelled these files as visible and will not allow Terminal to re-label them so that they go back to their proper "hidden" state.
    I cannot with Snow Leopard find a way to "Archive and Reinstall" so that I could sort of shove aside the troubled system and put another clean one in place like we could with Leopard and previous OSX installations. So does anyone have any ideas what may have happened here and how I can address it without the painful solution of wiping the HD and reinstalling and re-registering everything like Photoshop, FCP, Lightroom, Aperture and a host of other software? Something I am trying to avoid. Thanks............

    Peter Mullett wrote:
    This is a question that has stumped AppleCare when I called them last week, and the "Geniuses" at my local AppleStore yesterday....So, throwing it out here. On upgrading my new 17" MBP last week to Snow Leopard I discovered the Finder was showing a lot of System files that normally are "hidden". IE: bin, cores, etc, mack kernal, tmp, usr, var. The regular way of dealing with these files is to make them "hidden" with a Terminal command,
    which terminal command are you talking about? the regular fix is this
    http://www.macosxhints.com/article.php?story=20071107023334449
    it's for leopard but I believe it works for snow leopard too.
    but that didn't work. I reinstalled Snow Leopard twice, that didn't work, the Genuis applied a Widget to hide the files, that didn't work either. Somehow the Snow Leopard installation has labelled these files as visible and will not allow Terminal to re-label them so that they go back to their proper "hidden" state.
    I cannot with Snow Leopard find a way to "Archive and Reinstall" so that I could sort of shove aside the troubled system and put another clean one in place like we could with Leopard and previous OSX installations. So does anyone have any ideas what may have happened here and how I can address it without the painful solution of wiping the HD and reinstalling and re-registering everything like Photoshop, FCP, Lightroom, Aperture and a host of other software? Something I am trying to avoid. Thanks............

  • How to hide raw files

    Hi All,
    I have a Nikon D70s and shoot in both raw and jpg. When I upload to iPhoto 08, it uploads both .nef and .jpg files, which is fine, and then displays both photos. I want to be able to hide the .nef files until I need them. Is there a global setting that will automatically hide .nef files?
    Thanks!

    Welcome to the Apple Discussions. There is no universal setting to hide any kind of file. But you could create a smart album based on the criteria Photo is RAW. It will display all of the raw photos in the library and make it easy to hide them en mass.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How to hide hidden files in Java Browser

    My application has a browser. I use the following method from FileSystemView
    public File[] getFiles(File dir,
    boolean useFileHiding)
    with false as the second argument so that the browser doesn't display hidden files.
    It doesn't work completely.
    I found out there are two types of hidden files in Mac. the ones that being with "." (unix based) and the ones that have an invisibility attribute for the meta of the file (folders like /usr, /bin, /tmp, /etc).
    The getFiles filter works only for hidden files that start with "." but it still shows the second type of hidden files.
    For the second type of hidden files in Mac, how can I get the invisibility file attribute information in Java so that I can hide them from the file browser?
    I am aware of GetFileInfo and the SetFile tool allows setting those flags. But how can I call those functions from java? And once i get the attributes of a file I don't know how to apply a filter to FileSystemView?
    thanks,

    The GetFileInfo tool that ships with the XCode Tools can display the file's information. Additionally, the SetFile tool allows setting those flags. How you use java to implement those, I suggest you ask at the Unix forum under OS X Technologies.

  • How to hide hidden files using java FileSystemView

    My application has a browser. I use the following method from FileSystemView
    public File[] getFiles(File dir,
    boolean useFileHiding)
    with false as the second argument so that the browser doesn't display hidden files.
    It doesn't work completely.
    I found out there are two types of hidden files in Mac. the ones that being with "." (unix based) and the ones that have an invisibility attribute for the meta of the file (folders like /usr, /bin, /tmp, /etc).
    The getFiles filter works only for hidden files that start with "." but it still shows the second type of hidden files.
    For the second type of hidden files in Mac, how can I get the invisibility file attribute information in Java so that I can hide them from the file browser?
    thanks,

    The GetFileInfo tool that ships with the XCode Tools can display the file's information. Additionally, the SetFile tool allows setting those flags. How you use java to implement those, I suggest you ask at the Unix forum under OS X Technologies.

  • How to hide video files in Playbook

    I want to hide some of the videos to hide from my kids. There is no such option that any particular video file doesnt show in the videos list. Insted, if there is any option to hide the icon of the video from the menu, just like option in the Bold 4 smartphone.

    There isn't an option per se.
    However there is an app in AppWorld that will let you do it.
    Personally, I just use the Air Browser in AppWorld to rename the file extension from .mp4 to .mp4.me.
    This hides the video from the player until I name it back again.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!

  • How Can Hide The File Name in URL Using Jsp

    I Want source code for Hiding The File name in url address using jsp.
    for example www.website/login.jsp is view but i want www.website/ only.

    Hi Praveen - how does that DEF would be determined?
    Have a look at the below blog for executing os commands
    SAP XI File Adapter OS Command Line Feature - Process Integration - SCN Wiki
    XI/PI: Command line sample functions
    Is there any problem in using the dynamic file name configuration??
    Message was edited by: Hareesh Gampa

  • How to hide system files in finder

    Is there a way to hide .? files and systems files that are grayed out in finder? 

    Open the Script Editor or AppleScript Editor in one of the subfolders of Applications and run the following:
    tell application "Finder" to quit
    if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    else
    do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    end if
    delay 2
    tell application "Finder" to run
    If you change your mind later, run the script again.
    (70820)

  • How to hide *.lnk files

    I have accidently turned on what are normally hidden icons (*.lnk). How do I turn them off? BTW I use VMWare and these look like files I use in VMWare.

    Start “Terminal” in Applications - Utilities - Terminal
    Copy defaults write com.apple.finder AppleShowAllFiles TRUE and enter (without the quote)
    type killall Finder and enter (without quote)
    Done

  • Finder - how to hide system files / folders????

    I did something (which I can't recall) and now there are a lot of system folders showing up in Finder windows. Examples:
    .DS_Store

    Open /Applications/Utilities/Terminal, copy the blue text in, and press enter:
    defaults delete com.apple.Finder AppleShowAllFiles;killall Finder
    That deletes the preference entry to show all files, then restarts Finder.
    Good luck!
    Message was edited by: joshz

  • Hide dot files

    I found a web site which tells us how to hide the . files which windows users can see but apple users cant.
    This needs to be added to the smb.conf file
    [global]
    veto files = /.*/Thumbs.db/
    delete veto files = yes
    but in etc and the samba folder the smb.conf files say 'do not edit this file they are created automatically'
    Does this mean that if I add these lines manually they will disappear the next time I make a change in Server Administrator?
    Thanks
    Paul

    Server Admin manages the configuration files for Samba, and this is how it works:
    The usual Samba configuration file is kept in /etc/smb.conf, but that isn't the only one in Leopard. The usual smb.conf file has an include line that pulls information from another smb.conf file at /var/db/smb.conf. In Leopard, the synchronize-preferences tool writes to /var/db/smb.conf, and that contains most of the SMB preferences. You'll even find that entries in /etc/smb.conf and /var/db/smb.conf may conflict. In such cases, /var/db/smb.conf will take precedence.
    The usual /etc/smb.conf also has an include that defines what Samba calls "usershares," which are normal share points. This usual smb.conf references additional configuration files in /var/samba/shares, which is what you've observed.
    Typically, in Leopard, Apple tools do not write to the usual /etc/smb.conf file. Instead, system-wide sharing settings for SMB are taken from /Library/Preferences/SystemConfiguration/com.apple.smb.server.plist and are written to /var/db/smb.conf by synchronize-preferences. This is all automatic, regardless of where you're making changes to the SMB service - from System Preferences (Mac OS X client), Server Admin or Server Preferences (Server). A similar tool called synchronize-shares will take share point information and write that to a file for each share point in /var/samba/shares. The share point information is kept in the system's local directory domain in /Local/Default/SharePoints.
    So, if you want to make custom changes to the SMB service in Leopard, stop the service, and edit the /etc/smb.conf file after you've backed-up the original. Just know that your changes may be overridden by Apple's in /var/db/smb.conf, and there's no easy way to prevent that.

  • Hide .LCK files

    For some reason Dreamweaver CS5 is not hiding the _notes folders or .LCK files. I have freshly reinstalled and updated, but this problem persists. All documentation says these files should not be visible, but here they are.
    Please let me know how to hide these files, the way they should be, the way they were in CS4. You can even check out the .LCK files currently.

    In the expanded File panel, VIEW | Show Hidden Files.
    By the way, leaving this enabled is the only way you can see files such as ".htaccess" in your file list....

  • How can I hide hidden files again?

    Hi I just bought a new macbook pro with maverick 10.9.3 I believe and made my hidden files viewable to extract certain data. But now I want to hide the files again how do I go about doing that?
    thanks!

    You could try it in Terminal:
    defaults write com.apple.finder AppleShowAllFiles FALSE
    Then:
    killall Finder

  • How to hide items on Windows 8 File Explorer Ribbon

    Scenario
    This article describes how to hide items on the file explorer ribbon in Windows 8 and Windows 8.1.
    Method
    We can implement it via customizing the permission of the related registry keys.
    Note: Before you make changes to a registry key or subkey, we recommend that you export, or make a backup copy, of the key or subkey.
    Before you make changes to a registry key or subkey, we recommend that you
    export, or make a backup copy, of the key or subkey.
    Step 1:
    Open
    Registry Editor and locate to following registry key under which you can find the corresponding keys of the items on the File Explorer Ribbon.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\
    In the following figure, it shows the Add a network location item on the file explorer ribbon, and the corresponding
    registry key in Registry Editor.
    Step 2:
    Take ownership of the registry key
    Note: You can take ownership
    of a registry key if you are logged on as an administrator or if you have been specifically assigned the permission to take ownership of the registry key by the current owner.
    Right-click on the registry key which you want to take ownership of,
    and then select
    Permissions... option.
    Click on
    Advanced button to grant special permissions in the key.
    At the top to the right of the current
    Owner, click on the Change link.
    Enter
    Administrator in the Enter the object name to select
    box, and then click on Check Names.
    Click on
    OK twice to apply.
    Step 3:
    Change the permission of the registry key.
    On
    Permissions for the key name display dialog, click
    Administrators in the Group or user names window, and then select the
    Allow check box for
    Full Control
    option.
    Click
    Users in the Group or user names window, and then select the
    Deny
    check box for
    Full Control
    option.
    Step 4:
    Click on
    Apply and OK to save the changes and the following figure shows the modified permissions and owner.
    Step 5:
    When you open File Explorer, the item you would like to hide disappears. For your information, the following is an example:
    Item: Add a network location
    Corresponding Registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Windows.AddNetworkLocation
    For advanced users
    You can also deploy script with Set-Acl which is a PowerShell command to take ownership and change permissions
    of the keys. For your information, please refer to the following articles to learn more about this command:
    Set-Aclhttp://technet.microsoft.com/en-us/library/hh849810.aspx
    SET-ACL on registry key
    http://blogs.technet.com/b/brad_rutkowski/archive/2008/09/29/set-acl-on-registry-key.aspx
    Apply to
    Windows 8
    Windows 8.1
    Welcome to your feedbacks.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    The reason they gave was it is possible for the file to stay open when done with the file. (not properly closing) As the driver would be accessing the file to retrieve the thumbnail.
    The thing is a driver is nothing more than a program it self. Therefore it is capable of opening and closing a file and placing the thumbnail into the database for that folder. It then would be capable to verify if the thumbnail exists in that database. Since the driver only has to run when explorer is open in that folder's view, it really is not running that often.
    The catch I can see it when both Illustrator and explorer are running at the same time. Which one should close the file? The solution would be a small app that verifies that both programs are running and has control of clean up when both have closed. The driver and Illustrator could also in theory check and see if the other is running, if it is do nothing if not then close the file.
    So it really boils down to having the driver and Illustrator talking to each other.

Maybe you are looking for