How to unhide hidden files

How do can.I unhide hidden folder

Using your File Manager, scroll to the file, don't open it.
Click the Menu key > UNHIDE
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!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • HOW TO VIEW HIDDEN FILES?????

    i have searched for days on my computer for some hint a program or option that allows me to view any hidden files in an application folder, but it has yet eluded me.
    I am having trouble with a program of mine, and the tech service there told me to send them the programs log file, which they named. i looked in the applications folder, and the only files i saw was the program icon, and the uninstall folder, which contained the uninstall icon. i told them this, and they replied:
    "i'am sure that these files are on your computer. Maybe they are invisible.
    Please search (automatic) the folder ".********" ."
    if anyone knows, eitehr what this means, or how to view hidden files, please let me know
    Thanx

    To see inside an application package select the application then CTRL- or RIGHT-click and select Show package contents from the contextual menu. You can navigate through the application package's content. It's unlikely you will find anything useful there.
    To see invisible files open the Terminal application in your Utilities folder and at the command line prompt enter or paste the following command then press RETURN:
    defaults write com.apple.finder AppleShowAllFiles TRUE
    To turn off the display of invisible files substitute FALSE for TRUE in the same command line.
    Invisible files are invisible for a reason - to hide them from the prying eyes of novice users and ignorant tech support people. Perhaps it would be more helpful if you could detail the problem you are having.

  • How to see hidden files in folder, how to see hidden files in folder

    how to see hidden files in folders

    Welcome to Apple Support Communities
    You can't see by default hidden files through Finder. However, you can do it with a command that you can copy in Terminal (in /Applications/Utilities). Open this application and type:
    defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder
    After doing it, you will be able to see hidden files through Finder in all the volumes connected to the MacBook Pro

  • Bridge CC: how to show hidden files?

    My search returned hidden files.
    Could you please show me how to reveal hidden files.
    View | Show Hidden files IS checked.
    Thanks.

    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.
    (65149)

  • How to view hidden files on a mac

    I have certain hidden files on my mac that i know are there because they are taking up file space i was wondering how i can make them unhidden thanks

    One of those multi-purpose gizmos is overkill for this simple task (unless you already have one – I personally don't use them). Save (to any location you like) Gnarlodious's script as an app, and then slide that app into the sidebar of any Finder window. From then on one click on that sidebar alias toggles 'see invisibles' on and off. My script is virtually the same:
    set {currentSetting, toggle} to {do shell script ¬
        "defaults read com.apple.finder AppleShowAllFiles", "ON"}
    if currentSetting is in "ONO" then set toggle to "OFF"
    try
        -- If you know how to, optionally insert a 'whoosh' sound here.
        tell application "Finder" to quit
        do shell script "defaults write com.apple.finder AppleShowAllFiles " & toggle
        delay 0.25 -- Alter this value by trial & error to suit your Mac.
        tell application "Finder" to launch
    on error errTxt
        display dialog errTxt
    end try
    Paste that block of green text (or Gnarlodious's) into Script Editor, hit your <enter> key and the text should now display in pretty colors with no error message. You can click on "Run" to test it. Save as an application with all the Options UNchecked.
    If you know how to, give it a suitable icon – mine is a "switch".
    Heed the warnings about interfering with 'invisible' items. Looking is fine, altering is only for those who know what they are doing – that's why they're invisible!
    G5 2.1GHz     Mac OS X (10.4.8)  

  • TS1362 My iTunes has stopped playing - it will not progress. I have updated iTunes, and can't figure out how to find any plug-ins - can't figure out how to find hidden files on the iMac Finder.

    How do I find hidden files on my iMac? My iTunes has stopped playing music and videos - the playbar does not progress, and it may be that there is a plug-in that is stopping it. How do I fix it?

    Well, it sort of solved my problem. Now every time I start a lecture with sound, there is no sound, but the slides advance. If I go back to iTunes and turn on a cd, it plays the sound. If I then go back to the lecture, the sound goes on. So each time I start a slide show with sound, I have to turn on iTunes. How can I fix this?

  • How to find hidden files?

    Hi,
    I don't know how I did it, but I managed to hide some folders on an external hard drive plugged into my iMac.
    I can find one of them by searching for it by the name. But I cant find the other one because I have no idea what I named the folder (DOH!).
    Is there a simple way to display all hidden folders?
    I have no idea how I managed to hide the folders in the first place..... I did it a while ago and I must have had too much to drink. I have a vague recollection of downloading some 3rd party software (not 100 percent sure if I did though) and I cant find any such software in the Apps/Utilities folder etc.
    Any help welcome.
    As you can probably tell, I'm not very tech savvy. So the simpler the method the better!
    I'm running the lastest OSX.
    Thanks in advance!

    Hi..
    Simple, maybe not, but:
    You could open a terminal (it's in utilities) and
    enter: ls -al /Volumes/Mydrivename
    where Mydrivename is the name of your drive
    It will show all files and folders at the top level of your drive.
    Lines starting with a 'd' is folders.
    If the foldername starts with a '.'
    it's a hidden folder.
    i'm not sure if you can display hidden files and folders in a finder window.
    Hope this helps
    /Dennis

  • 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 restore hidden files in Time Machine

    Hi,
    I am trying to set up a crontab job to run automatically when I log in, and want to put my original .login file back in my home dir.
    Anyone know how to restore a single hidden file? I don't really want to restore my entire Home directory structure.
    Steve

    Just open a terminal and access it directly.

  • How to see hidden files

    How do I see hidden files? I need to edit some so that I can change some values in lyx, but I can't seem to find out how to see them.
    TIA

    If they are just text files, download TextWrangler which is a great free text editor, and it has an "Open Hidden…" option. Additionally, It will allow you to "unlock" system files, make modifications, and save using an admin username and password.

  • How To Restore Hidden Files

    I have a strange problem. I'm trying to restore a file from yesterday that Adobe Photoshop puts in a temporary folder under /private - which is hidden in Time Machine. I've figured out how to display hidden folders in Time Machine. However, /private is still faded out and I can't access it despite executing the Terminal command:
    defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
    The path of my file is /private/var/folders/mq/T/TemporaryItems/
    Does Time Machine even back up these files? If so, how can I access them so I can restore it? I lost a lot of work yesterday and I'm freaking out trying to find it. Thanks!

    Just open a terminal and access it directly.

  • How to open hidden files on iPad 2

    I have iPad 2 and I want to access my hidden files. I have been searching in the internet and looked all over for 3 hours but yet nothing. So I thought I may ask here but, I want to open them WITHOUT jailbreaking. I have searched in the internet and I think I understood some stuff. I found out that I can put some commands in something called terminals or finder etc.. I looked around the internet but I did not understand what is that terminal at all. Then when I searched a bit the only thing I found about finder is that I must jailbreak my ipad first and then some program called.... cidney or something will be installed and when I open it I will be download finder app. However, I want to open the hidden files and be able to copy files from FileManager or (one of the two, it does not matter) without jailbreaking. So please tell me how to do it step by step since I am not any professional on iPad and I have it since 2 weeks only.

    First, there are only two ways to get new, authorized apps onto an iPad.
    One is to download the app from iTunes on a computer, connect the iPad and sync the app over to it.
    Two is to use the App store on the iPad itself and download directly to it from there.
    If he did anything else to put these apps on your iPad, then he already jailbroke it, as that is the only way he could have bypassed the two officially supported means I just mentioned.
    Ordinarily, to delete an iPad app, you would tap and hold the app until it wiggles and a red/white "X" appears in the app icon - then tap the "X" and it is deleted.
    If he did not install these apps via iTunes or the App store on the iPad, you have a hacked device, and you should try a restore to undo the jailbreak.  Be aware that it is sometimes impossible to undo a jailbreak, and the result is a ruined device.

  • How to clear hidden files from hd

    My son upgraded iphoto and it disassociated all the files.  I thought it deleted all the files so I reloaded everything from an external drive.  My system will not run due to the fact that it says, not enought space.  My harddrive is completely full.  I'm thinking I have multiple copies of files and have not been erased. I went to iphoto and deleleted ALL the files and it still says that I have no space available.  I don't know how to find the files that are hidden or disassociated.
    Does anyone know how to find files outside of the program???

    If your sure you have a copy of your files off the machine, the open the Pictures/iPhoto Library and right click "show package contents" and the Originals folder should have a copy there, or they are all in your Trash can and you need to Empty Trash and reboot the machine.
    Open Activity monitor and look at your space remaining.
    Why is my computer slow?
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • How to display hidden files in Finder?

    In Carbon Copy Cloner, I can see that there are hidden files on my internal hard disk.  They have names like .apsidal, .Younity, etc.  What settings do I use in Finder to display these files?  I thought that using the System files are included setting would work, but it doesn't.  Thanks

    Choose Utilities from the Finder’s Go menu, open the AppleScript Editor, and run the following:
    tell application "Finder" to quit
    try
    if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is not "1" then error
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    on error
    do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    end try
    delay 2
    tell application "Finder" to run
    If you change your mind later, run the script again.
    (122189)

Maybe you are looking for

  • Canon cameras not recognised in iPhoto 11

    Hi, since upgrading to iPhoto 11 my canon cameras (Powershot A3000 and eos 350D) are not recognised. The eos shows 'busy' on the screen but does not show up in iPhoto, and the powershot does nothing. The cameras are not showing in System Profiler of

  • Out put message

    Hi, I have query related to out put determination.In purchase order message determination (determination analysis -alphabet i in blue) sequence is shown as  ACE1 then AUFB then MAHN then NEU then z123 while as, as per message determination schema it

  • Maximum Qty of Material

    Can we specify 'Maximum Quantity of a Material' anywhere. Suppose i have a Material in Stock of 100 qty. And Still to deliver (open PO qty) = 250 qty And a new PO is created again for 200 qty. I want to block the creation of PO when, stock qtyopen po

  • Putting site problem. Please help.

    Hi - if anyone can help me it would be fantastic... I try to put my web site onto the remote site, which according to the split 'Remote Site/Local Files' view, it has done. But when I view the web address in the browser (safari), it is still the old

  • Can I use my Windows Photoshop CS6 serial on a Mac?

    I recently purchased CS6 for my pc.  Now, I have a Mac and am wondering if I can use the second download on my Mac.  Will Adobe issue me a Mac version?