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

Similar Messages

  • 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 in macbook air?

    I want to change image file in Xcode project but I can't find a necessary folder. Help please!

    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 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 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 find log files in Sun soalries....

    How to find log files in the SUN Solaries Os if there is any.....
    i am new to SUN Solaries Admin Can some one refer me a good book for me on sun solaries
    Thankq

    A reasonable method would be
    cat /etc/syslog.conf
    .. at least it would show you where syslog send its logs.
    .7/M.

  • How to find the File name using the FTP Adapter

    hi all,
    how to find the File name using the FTP Adapter with BPEL.
    Regards

    Found the solution for this.
    First In the mediator's routing rule use assign property $in.property.jca.file.FileName to $out.property.jca.file.FileName
    In the BPEL's receive activity go to the properties tab and get the property to a BPEL variable. That should do it.
    Thanks for the posts

  • Question about how javac finds referenced files.

    Hi
    I am just beginning to learn Java and have got some questions related to packages.
    I have two classes:
    MyClass.java
    package pkg;
    public class MyClass {
         public void prn(int x){
         System.out.println("Integer: "+x);
    Test.java
    import pkg.*;
    public class Test{
         public static void main(String[] args){
              MyClass obj=new MyClass();
              obj.prn(2);
    Directory structure
    /root/ jprog/MyClass.java
    /root/ jprog/Test.java
    Executing the following sequence of commands gives me:
    # ls
    MyClass.java Test.java
    # javac -d . MyClass.java
    # ls
    MyClass.java Test.java pkg/
    # cd pkg
    # ls
    MyClass.class -----compiles.
    # cd ..
    # javac Test.java
    Test.java:5: cannot access MyClass
    bad class file: ./MyClass.java
    file does not contain class MyClass
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    MyClass obj=new MyClass();
    ^
    1 error
    Now after reading another thread on this forum I came to know that the compiler finds the
    MyClass.java in the wrong package. Using verbose option with javac shows this.
    So I move it to some other directory and everything works.
    # mv MyClass.java /root
    # ls
    Test.java pkg/
    # javac Test.java
    # java Test
    Integer: 2
    Now the question begins:
    Suppose we go back to how the files were arranged before I moved the MyClass.java file and
    I change the Test.java file by adding
    package pkg2;
    statement to it.
    Now everything compiles
    # ls
    MyClass.java Test.java ---I have deleted pkg and .class files
    # cat Test.java
    package pkg2;
    import pkg.*;
    public class Test{
    public static void main(String[] args){
    MyClass obj=new MyClass();
    obj.prn(2);
    # cat MyClass.java
    package pkg;
    public class MyClass {
    public void prn(int x){
    System.out.println("Integer: "+x);
    # javac -d . MyClass.java
    # javac -d . Test.java
    # ls
    MyClass.java Test.java pkg/ pkg2/
    # java pkg2.Test
    Integer: 2
    Why isn't the MyClass.java file causing any problems now?
    Using the verbose option with javac shows that the compiler goes straight for the pkg/MyClass.class.
    My readings of Core Java Horstmann tell me that the compiler always looks in the current directory. javac documentation also doesn't help. I know that the documentation recommends that the source file locations should match the package statements.
    I'm just trying to learn how javac finds referenced files.
    Any help??
    Thanks a load in advance.

    I know that the
    documentation recommends that the source file
    locations should match the package statements.This is not merely a recommendation, it is a requirement.
    Both javac and java find classes by traversing the classpath. The classpath should contain directories (or jar files) that correspond to the top of a (part of the) package hierarchy.
    For example, if the Java code for your class is in a file C:\src\pkg\MyClass.java, and MyClass.java declares the class to be in package pkg, the classpath should contain C:\src. Classes are then found by transforming their package declaration into a directory structure.
    Please note that javac works on files, not classes. Therefore it is necessary to specify the full filenames of the files you want to compile, even if you have specified the classpath. By default, javac will put compiled class files in the same location as their sources, so the classpath for the java command should also contain C:\src.
    The exception to the rule is when all classes for the program are in the default package (i.e., they do NOT contain a package statement). In that case, it is possible for javac (and I believe java as well) to find all classes in the current directory, so it will "just work".
    You can specify the classpath using the -cp parameter to both javac and java.
    Hope this helps.

  • How to find .pld files version in Oracle apps

    Hi,
    How to find .pld file version in Oracle apps using unix command or any other way.
    Regards

    Connect to the forms server.
    In the $AU_TOP/resource directory run the following...
    strings -a <NAMEOFFILE>.plx | grep '$Header'
    For example...
    To find the .pld version of INVAMCAP.plx I would run this on the forms server.
    cd $AU_TOP/resource
    strings -a INVAMCAP.plx | grep '$Header'
    This will return the .pld version.
    Hope this helps!
    Jen

  • How to find duplicate files in Finder with Automator or Apple ScriptEditor

    Can anyone tell me how to find duplicate files in Finder with Automator or Apple ScriptEditor.

    D'oh!  It's actually fairly easy - I just right clicked on the file, Get Info, Artwork tab, then dragged the picture to the desktop, from where I can do what I like with it.  Never mind, nothing to see here, carry on.

  • How to find the file that delete from time capsule?

    How to find the file that delete from time capsule?

    I mean I saved JPEG file in Time capsule and unfortunately delete the file. Can I get it back
    IF.... .no other backups have occured since you deleted the file, you might be able to retrieve it using an application like Disk Warrior. It's about $100 as I recall, and there are no guarantees that it will work.
    DiskWarrior 4 - The Disk Utility for Mac  Disk Repair, Mac Directory ...
    Any of the free or low priced utilities that you might see or try will not be able to retrieve a deleted file from a Time Capsule.
    If any backups have occured since you deleted the file, the deleted file has almost certainly been overwritten. No way to retrieve it in that case.

  • How to find lost files from Iphone without back up

    How to find lost files from iPhone without back up?

    If you don't have a back up, there's no where to restore them from.

  • How do i find hidden files on a memory stick

    i have been given a memry stick which i was told that it as some files on there that i asked for but when i plugged it in it was not showing any files.
    the guy who gave it to me said they are hidden files and to unhide them first but that was on a pc. so how do i unhide them on a mac ?

    Hi, not sure on PC files, but...
    Invisibility Toggler - 1.1...
    http://www.versiontracker.com/dyn/moreinfo/macosx/32246
    InVisibles - 1.5...
    http://www.versiontracker.com/dyn/moreinfo/macosx/14722
    Show Hidden Files 1.0...
    http://www.macupdate.com/app/mac/29096/show-hidden-files
    Hidden Way is a toggle for hidden files view in Finder...
    http://www.macupdate.com/app/mac/25716/hidden-way
    Show hidden files in OSX Finder
    Open the Terminal and type or copy/paste:
    defaults write com.apple.finder AppleShowAllFiles -bool true
    Reverting to the default of NOT showing hidden files:
    defaults write com.apple.finder AppleShowAllFiles -bool false
    *Restart or Force Quit Finder required to take effect.*
    http://www.apple.com/downloads/dashboard/developer/hiddenfiles.html
    http://www.burobjorn.nl/blog/?p=96
    Finder Force Quit, or restart required to take effect.

Maybe you are looking for

  • Updating records using a view

    Hello, I have two tables, ROAD and ROAD_PARSED. I have created a view ROAD_V that contains the fields from ROAD and ROAD_PARSED that I want to to update in ROAD. CREATE VIEW ROAD_V AS SELECT A.ID, A.PREF, A.NAME, A.TYPE, A.DIR,  B.PREF "BPREFIX", B.N

  • Message: Service Apple Mobile Device  failed to start when installing Itunes.

    When downloading a new version of Itunes I receive a message "Service Apple Mobile Device" failed to start. I have read the articles on how to start Apple Mobile Device.  But when I go to services, Apple Mobile Device is not listed. So I cannot start

  • Problem in printing script.

    Hi all. I am modified layout  Medruck.Same is transported in production also. but when i take print in both development and production on same printer then the printout not come same. means font size changes. Can anyone tell me why this happens? I ha

  • File crashing when placing or linking

    I am getting extremely frustrated! I use InDesign CS5.5 daily for my job.  I would say I have to force quit probably 8-10 times a day.  Almost everytime I try to relink or place an image I get the spinning beach ball or InDesign automatically closes

  • Master-Details-Details

    Salam Alikom i know we can use Master and details in apex but if i have (master - detail - detail ) for 3 tables like Countries table State table Areas table in oracle form it's very easy by wizard , do we have this in apex ? or any way to solve that