Invisible files under list in trash

I've read a some threads about hidden files in the trash, but none of them pertained to my issue. It's nothing major, and does not affect the functionality of the trash or Leopard. But I am quite curious.
Whenever I check what I have in my trash, under the LIST and PREVIEW LIST view, I see maybe 1 or two files/folders the others are invisible. ie. I know I've deleted a number of files/folders, but only see 1 or two spread apart, as if there are other files in between. But when I switch to ICON or COLUMN view, all the files/folders I deleted are visible. Switching back to the other 2 views makes most of the files/folders invisible again.
Wondering what is causing this, and maybe how to fix.
Thanks.

Thanks Carolyn, unfortunately, it didn't pertain to my issue. Deleting files, and deleting files in the trash work just fine, which is what the link to The X Lab was touching on.
My issue is just the view window. 2 of the 4 window view options shows all files, the other 2 only shows one or two random ones (most times the visible file is a folder, but I've seen an actual file be visible as well). I haven't seen more than 2 be visible at one time under List view or Preview List view.
I've repaired permissions, cleared cache, ran Disk Warrior, but nothing has fixed the issue. It seems like it happened after updating to 10.5.6. My previous G5 dual 1.8 PPC running 10.5.5, and my Mac at work (same specs as my current system) doesn't have this issue.

Similar Messages

  • Cannot find invisible files or folders any more

    Find or Spotlight used to be able to find invisible or hidden files, folders, etc. This is key for some purposes.
    Now it doesn't work. I can list hidden files or folders in terminal, but cannot find them at all using Spotlight, even when I know they are there. For example, searching for Name Contains private AND Visibility is Visible or Invisible returns nothing, even though ls -a returns private/ as one of the folders at root level.
    Does anyone have an explanation for this change in behavior, or a fix? Using a utility like TinkerTool is not a satisfactory workaround, because searching still fails even when hidden files are shown in the finder.

    Hi, j.e.s.
    First, we need to define hidden and invisible files, as they are distinct:
    • A hidden file is one whose file name begins with a period (.) . Example: a file named ".hidden" would not show up in Finder. This is a UNIX® standard.
    • An invisible file has its invisible file-system attribute enabled.
    A file can be both hidden and invisible, e.g. its name begins with a period and its invisible file-system attribute enabled.
    Now, as to searching for these with Spotlight:
    • By default, Spotlight neither indexes nor searches either hidden or invisible files.
    • The Find criterion for Visibility does not work. Find under Tiger is implemented in Spotlight. That the Visibility criterion does not work extends beyond the facts that Spotlight does not index hidden or invisible files nor will it search (with the exception of Raw Queries using criteria based solely on file system metadata) outside of its index. The function simply does not work. Even using a raw query to search for invisible files, when compared to using the Spotlight mdfind Terminal command, produces inconsistent results.
    I have an entire appendix in the Tiger Edition of my book — from the info above is provided — that demonstrates all of these anomalies with Spotlight concerning searching for hidden and invisible files.
    Your best bet for searching for hidden or invisible files under Tiger is to use EasyFind.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Why are .xlsm file not listed under spreadsheet in finder?

    In finder (os10.8.2) the .xlsm files are listed under documents not spreadsheets.  Is there a way to get all spreadsheet listed properly?
    Len

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  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.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    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.
    Show File:  a. On iPhoto 09 and earlier:  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.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • List file under directory using JSP

    Hi,
    Does anyone have a code to list all files under a certain directory in JSP? Thanks alot!

    thank you so much... l already have a code working, but l can't make it download excle file as it displays them online. l want to force download. thanks
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <%@ page errorPage="listFiles_error.jsp" %>
    <%
    // To change the directory that is listed, change this variable
    // \ character must be escaped with a second \ as below
    String directoryName = "c:\\Tomcat\\webapps\\examples\\jsp";
    // This variable needs to point to the URL that will be after the
    // domain name for the above directory (needs to be setup in your
    // application server)
    String urlName = "/examples/jsp/";
    // Loads the list of files in the directory
    File directory = new File(directoryName);
    File[] fileList = directory.listFiles();
    Hashtable sortedFiles = new Hashtable(fileList.length);
    // Loops through each file
    for(int i=0; i<fileList.length; i++) {
    File file = fileList;
    // Skip subdirectories
    if(file.isDirectory())
    continue;
    String name = file.getName();
    int dotIndex = name.indexOf('.');
    // Skip files with no extension
    if(dotIndex < 0 || dotIndex+1 >= name.length())
    continue;
    String fileName = name.substring(0,dotIndex);
    String fileType = name.substring(dotIndex+1).toLowerCase();
    // Only process PDF, REP, and XLS file types
    if(!fileType.equals("pdf") && !fileType.equals("rep") && !fileType.equals("xls"))
    continue;
    // Organize like filenames for processing later
    Hashtable fileTypes = (Hashtable)sortedFiles.get(fileName);
    if(fileTypes == null) {
    fileTypes = new Hashtable(10);
    sortedFiles.put(fileName,fileTypes);
    fileTypes.put(fileType,file);
    %>
    <html>
    <head>
    <title>
    listFiles
    </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css">
    <!--
    body {
         background-image: url(bkg2.gif);
         margin-left: 0px;
         margin-top: 0px;
         margin-right: 0px;
         margin-bottom: 0px;
    .style2 {font-size: large; color: #000066; }
    .style3 {font-size: medium; color: #000066; }
    -->
    </style></head>
    <body bgcolor="#ffffff">
    <table width="100%" border="0">
    <tr>
    <th background="chead.gif" scope="col"><div align="left"><img src="jpmorgan_logo.gif" width="200" height="40" border="0"></div></th>
    </tr>
    </table>
    <p> </p>
    <TABLE width="700" height="106" border="1" align="center" cellpadding="1" cellspacing="1" bordercolor="#000033">
    <tr>
    <th width="370" height="33"><div align="left" class="style2">Name</div></th>
    <th width="40"><div align="left" class="style2">PDF</div></th>
    <th width="40"><div align="left" class="style2">Rep</div></th>
    <th width="40"><div align="left" class="style2">Excel</div></th>
    </tr>
    <%
    // Loop through each file name, outputting the data in a tabular format.
    Enumeration e = sortedFiles.keys();
    while(e.hasMoreElements()) {
    String fileName = (String)e.nextElement();
    Hashtable fileTypes = (Hashtable)sortedFiles.get(fileName);
    File pdfFile = (File)fileTypes.get("pdf");
    File reportFile = (File)fileTypes.get("rep");
    File excelFile = (File)fileTypes.get("xls");
    %>
    <tr>
    <td height="63" align="left" valign="bottom"><div align="left" class="style3"><%=fileName%></DIV></td>
    <% if(pdfFile != null) {
    // Output the PDF Entry
    %> <td width="40" align="left" valign="bottom"><a href="<%=urlName+pdfFile.getName()%>"><img src="PDF.gif" width="40" height="40" border="0"></a></td>
    <% } else {
    %> <td width="40" align="left" valign="bottom"> </td>
    <% }
    %>
    <% if(reportFile != null) {
    // Output the Report Entry
    %> <td width="40" align="left" valign="bottom"><a href="<%=urlName+reportFile.getName()%>"><img src="Rep.gif" width="40" height="40" border="0"></a></td>
    <% } else {
    %> <td width="1" align="left" valign="bottom"> </td>
    <% }
    %>
    <% if(excelFile != null) {
    // Output the Excel Entry
    %> <td width="40" align="left" valign="bottom"><a href="<%=urlName+excelFile.getName()%>"><img src="xls.Gif" width="40" height="40" border="0"></a></td>
    <% } else {
    %> <td width="1"> </td>
    <% }
    %>
    </tr>
    <%
    %>
    </table>
    </body>
    </html>

  • Elements 11 accepts no *.arw files even after new installation and camera raw modul 7.4. Under open files as Camera Raw the *.arw file is listed.

    After trying all options provided by Adope I cannot open *.arw files under Elements 11.

    You need camera raw 8.3 for your camera. It is only compatible with PSE12 or PSE13. Alternatively, download and install the free Adobe DNG converter to convert your raw files to the Adobe universal Raw format and the files will open in all versions of PSE (keep your originals as backups and for use in the camera manufactures software)
    Windows download (.exe file) click here DNG Converter 8.3
    Mac download (.dmg file) click here DNG Converter 8.3
    You can convert a whole folder of raw images in one click. See this quick video tutorial:
    You Tube click here for DNG Converter tutorial

  • How can I remove a doubly-invisible file?

    My external drive has a 28GB invisible file on it called "Volume Catalog Info". The finder says the disk is full, but won't reveal the file, even with all files made visible.
    The way I found the monster file was using DiskSurveyor 2.5 under Classic. I'd think it was imagining things, except that the Finder agrees that the disk is full. My 2 folders on the drive (no system files) add up to the same 28GB short of the size of the disk. I made all files visible using Terminal ("defaults write com.apple.Finder AppleShowAllFiles 1") but besides the 2 folders mentined, there's nothing new shown of any size, only the following: Desktop DB 16KB, .DS_Store 8KB .TemporaryItems folder 8KB, Desktop DF 4KB, and .Spotlight-V100, .Trashes, Desktop, and Desktop Folder, all at Zero KB.
    Since Terminal doesn't reveal the file either, how can I remove it?
    Thanks!

    I appreciate the help and think this may have been a case of operator error. In searching the web I found someone with the same problem, but I now think I had the wrong idea of my actual disk size! So DiskSurveyor showed this mega-file, but just as a side-effect of its being an OS9 program. No mega-file, nothing to delete, red face.

  • External Drive with invisible files

    I have a MAC OS Extended format hard drive that I am attempting to clean up to make room for transfering some data. I have removed all the visible folder and files, but both finder and Disk Utility show that there are over 173 GB of data (over 2 million files) still on the volume. The drive is a 500 GB LaCie that I partitioned into two equal parts of 250GB. The other Partition was used exclusively for TM Backups.  I want to reformat the drive ( the old back up partition I dont care about). but I am afraid of erasing files that I can't see.
    Is there such a thing as an invisible file?
    How can I find out what they are and why they are taking up so much of the drive?
    I did run DU to Verify the volume and it checks out with no errors.
    It is possible that they could be windows files that we used with Parallels at one time. But we no longer use Parallels. I would think that I would be able to see them even if I can't open the files.
    I am running Lion on an iMac. The external drive is connected with firewire.

    If you want a cleared (erased) unpartitioned 500 GB drive, then do this:
    Drive Partition and Format
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select the hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    Yes, there are invisible files. The OS has thousands of them that are kept invisible to the user.

  • Spotlight doesn't find invisible files in Yosemite

    Spotlight, under Yosemite 10.10.2, does not find invisible files, even when specifically requested to do it. The results window is empty.
    Besides that, the insible property has disappeared from the Finder information windows:

    Open System Preferences > Spotlight. Under the 'privacy' tab, drag your HD into the list from a Finder window. As soon as it's in the list, remove it.
    Spotlight will now begin to reindex your entire HD. You'll see a dot in the middle of the spotlight icon and clicking the icon will tell you that it's re-indexing.
    Regards,

  • Terminal not showing invisible files/system files

    My terminal application has stopped showing system files files
    eg:
    Macbook:~ julianmerrow-smith$ ls -l
    total 32
    drwx------+ 21 julianmerrow-smith staff 714 Oct 20 11:46 Desktop
    drwx------+ 5 julianmerrow-smith staff 170 Oct 20 11:46 Documents
    drwx------+ 61 julianmerrow-smith staff 2074 Oct 20 08:06 Downloads
    drwx------+ 39 julianmerrow-smith staff 1326 Oct 19 20:45 Library
    drwx------+ 3 julianmerrow-smith staff 102 Sep 27 11:37 Movies
    drwx------+ 3 julianmerrow-smith staff 102 Sep 27 11:37 Music
    drwx------+ 5 julianmerrow-smith staff 170 Sep 27 21:09 Pictures
    drwxr-xr-x+ 5 julianmerrow-smith staff 170 Sep 27 11:37 Public
    drwxr-xr-x+ 5 julianmerrow-smith staff 170 Sep 27 11:37 Sites
    -rw-r--r-- 1 julianmerrow-smith staff 800 Oct 7 12:15 artforsale.pwm
    -rw-r--r-- 1 julianmerrow-smith staff 800 Oct 7 12:15 artforsale.pwm_bak1
    drwxr-xr-x@ 33 julianmerrow-smith staff 1122 Sep 27 14:35 be2bqu21.default
    -rw-r--r-- 1 julianmerrow-smith staff 744 Sep 28 09:02 mt-config.cgi
    drwxr-xr-x 3 julianmerrow-smith staff 102 Oct 20 10:30 server back-ups
    -rw-r--r--@ 1 julianmerrow-smith staff 2668 Oct 20 09:07 untitled.html
    I created a new admin, same result. sudo bash has given me back use of the terminal but how do I get it back to normal, any ideas?

    There are two kinds of "invisible" files and folders - those items whose names begin with a period, and those items which carry a "hidden" flag. Both are normally invisible to Finder, though Finder can be enabled to see them both. Terminal's ls command requires the -a option in order to see items with names that begin with a period, but does not need the -a option to see items that carry the "hidden" flag.
    Are you looking for something specific? You listed the contents of your home folder, which doesn't normally contain any executable system files, and doesn't normally contain any items which are invisible because of the "hidden" flag. The home folder does contain a few items with names beginning with a period, which you would be able to see if you use *ls -la*. Of these, the .Trash folder is probably the only item that is of practical interest.
    There are invisible system files and folders at the root level of your startup volume. If you want to see all of these, you can use
    ls -la /
    Even without the -a option, the command
    ls -l /
    will show those hidden system items that are of most practical interest (/Volumes, /bin, /etc, /private, /sbin, /tmp, /usr, /var )

  • When I open iPhoto5, the list (albums, trash, etc.) next to pictures has disappeared.  How do I get it back?

    When I open iPhoto5, the list (albums, trash, etc.) next to pictures has disappeared.  How can I get it back?

    You can move your cursor to the far left of the iPhoto window and grab side of the source pane and drag it open - or
    A good general step for strange issues is to renew the iPhoto preference file - quit iPhoto and go to "your user name" ==> library ==> preferences ==> com.apple.iPhoto.plist and trash it - launch iPhoto which creates a fresh new default preference file and reset any personal preferences you have changed and if you have moved the iPhoto library repoint to it. This may help
    This does not affect your photos or any database information (keywords, faces, places, ratings, etc) in any way - they are stored in the iPhoto library - the iPhoto preference file simply controls how iPhoto works - which is why renewing it is a good first step.
    LN

  • How to write content of the file under folder

    Hi Experts,
    I have following scenario, I have list of files under folder in local desktop(for eg D:\mani)
    I have only filename, using this filename i want to search and get content of the particular file and write in some other location? how to do that? give your suggestions?
    Regards,
    P.Manivannan

    You could go two ways here:
    The first possibility requires that (a) you know what operating system you are working with, and (b) you only need to copy the file, and not do anything else with the contents of it. In this case, probably the easiest way to do this is to use a Runtime exec command for the file you want to copy:
    java.lang.Runtime.getRuntime().exec( "cp D:\mani D:\mani2" );Otherwise, if you need your code to be portable, you can't assume anything about the operating system. Since java.io.File doesn't provide a copy method, you will need to read the entire contents of the file into the vm, and then write them out to a new file. Also, if you need to use the contents of your file in some other way, as well, then you also need to read the entire contents into the vm. In this second case, how you read the file may depend on what kind of data the file contains.
    In general, the following code should work for you:
    final FileInputSteam  fis = new FileInputStream ( new File( "D:\mani"  ) );
    final FileOutputStream fos = new FileOutputStream( new File( "D:\mani2" ) );
    final byte [] buf = new byte[ 1024 ];
    int bytesRead;
    while ( ( bytesRead = fis.read( buf ) ) != 0 )
        fos.write( buf, 0, bytesRead );Don't forget to catch or throw IOException.
    Hope this helps.
    - Adam

  • Modify extension of txt file under labview

    I've got a.log file or .txt file than i copy in new directory and i would like to use this file under excel, but I don't know how can i change the extension under Labview???
    I hope than you understand me.
    Thank you,

    drikc,
    avoid asking several time (3 !!!) the same question on this forum !
    tst,
    your previous icon was a disaster, but  this one is even worse !..
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • Date Created files are listed as 12/31/1903 ???

    All my files and folders listed under: Date Created has incorrect dates of Descember 31, 1903. Files under Date Modified are correct. System files and apps are also not affected.
    These incorrect dates are on my internal drive and also on my PC backup servers.
    Questions:
    - What is the cause?
    - How to correct?
    - Most important. Are these files in any kind of jeopardy for corruption.
    Thanks

    Or the files are missing the creation date in the directory structure, maybe because they've been to another platform and back.
    The original Macs use 1st Jan 1904 as the base date from which all other dates are calculated. Unix uses 1st Jan 1970 (the "epoch"), Windows might use 1900.
    So it sounds like the creation date has been filled out with high value, producing the 2's compliment effect you're seeing, setting the date to just before the earliest value it could be, In effect, the creation date is being seen as a slightly negative number, perhaps -1.
    This would reinforce my belief that the files have been to another OS that doesn't know about storing creation dates. This, of course, might just be OS9 or earlier, rather than anything like Windows or OS/2.
    Where were these files originally created ?

  • Does Any one can indicate me how to delete recovered files found on the trash can?

    I´ll appreciate very much your help indicating me the best way to delete recovered files found on the trash can.

    The Getinfo pane has several sections. Next to the top is "General". At the bottom of that section, under the row of colored dots is a checkbox,  [√] Locked (and not checked means not locked).

  • Find and sort all files in folder without invisible files

    Hi all,
    I am trying to check whether the newest file added to a folder is an HTML file. In theory the folder should be empty when a new file is added because the script will delete all files in the folder just before it finishes running.
    However, I am having a problem with .DS_Store files being created automatically in the folder. When Finder accesses the folder it creates a new .DS_Store file and thus the newest file added to the folder is never an HTML file.
    I believe that the command "without invisibles" could help me with this problem. However, I have not been able to implement this successfully. I would appreciate if someone could please point me in the right direction. Here is what I have so far.
    tell application "Finder"
              set sortedFiles to reverse of (sort (files of thisFolder) by modification date) as alias list
              set newestFile to item 1 of sortedFiles
    -- check if newestFile is an HTML file
    -- read file and send contents to another application
    end tell
    Thanks for your help!
    Message was edited by: dsbird

    Errr...  A quick reality check is called for. If you make files visible to the finder then they are no longer invisible files, so ignoring invisible files won't help you one bit. your best bet is to do a manual check for a file that starts with a "." (which would normally be invisible):
    tell application "Finder"
              set thisFolder to folder "Pictures" of home
              set sortedFiles to (sort (files of thisFolder) by modification date) as alias list
              set newestFile to last item of sortedFiles
              if name of newestFile starts with "." then
                        set newestFile to item -2 of sortedFiles
              end if
    end tell

Maybe you are looking for

  • Service order creation from sale order

    Hi Friends,    Could you please tell me where is the setting for the automatic creation of service order from sale order.     Iam using LEIS , TAD and CD as the sales documents and SM01 as service order document.     Am I missing something?     Pleas

  • Both time machine drive and startup disk can't be repaired by disk utilities and needs to be formatted!!??

    ok so i accidentally remove the USB while my laptop was backing up to the time machine partition on my external HDD. I plug it in again, and no time machine partition. just the other part (fat 32 partition). so i open disk utilities.. the partition i

  • Check no in Payment List Report (T-Code: S_P99_41000099)

    Hi, I had successfully executed the actual payment run with the payment method is C (check) using F110. But when I run S_P99_41000099 in the payment list, I cant find check number. I tried the choose fields to display more fields, but I cant see chec

  • Cannot connect to Oracle cache administrator.Please help.

    Hi , I was not able to connect to the Oracle TimesTen database the usual way. I get the following errors: Backend failed with exit status 1: C:\TimesTen\tt70_32\srv\info\ws\cgi-bin\cache/ttBackEnd.exe -connStr "DSN=TTSS" -user "APPS" -oraclepwd [Omit

  • RMAN Backup job fails after changing sys, system passwords

    Hello Oracle community, 11.1g After we changed the passwords for sys, system and sysman the backup jobs fails. this is my error log: Recovery Manager: Release 11.1.0.7.0 - Production on Mo Aug 30 11:16:29 2010 Copyright (c) 1982, 2009, Oracle and/or