Manually Search through sparsebundle files with finder

Is there any way I can view the files of a sparsebundle file like opening a tar/zip file in finder?

Jennifer Edwards wrote:
Please don't flame the newbie here--what's QuickLook? Is that a separate utility I need in order to use the BetterZip plugin? I followed your BetterZip link and didn't find any info about where to get QuickLook.
QuickLook is part of the OS that allows you to take a "quick look" inside a file. Select a file in the Finder and press the space bar.
There are a number of QuickLook plugins for various file types. To install one just copy it to the "QuickLook" folder inside the "Library" folder in your home directory. You may have to create that folder.
I'm a PC who just got a MacBook Air, and I'm extremely frustrated by the fact that I can't look inside my archives or add files to existing zip archives, which is standard in Windows 7. Why on earth would Finder assume I want to unzip the whole archive by default?
Windows uses a very simple file system. MacOS X has a lot more going on underneath. It can't accurately represent Macintosh files on anything except a Macintosh file system. There are compatibility modes for things like servers and foreign file systems, but they are only for interfacing with those foreign systems. They shouldn't be used for day-to-day operations.
I'm a writer and I zip all of my text and photos together for each article when they're published, but sometimes need to refer back. Sounds like QuickLook/BetterZip just might solve my problem.
Don't forget Spotlight. While it is a bit of a hassle to update a zip file, you can search your computer (and any zip files therein) very quickly and easily for any data.

Similar Messages

  • Looking for a free iOS 4 app that can search through .pdf files or spreadsheets

    Looking for a free iOS 4 app that can search through .pdf files or spreadsheet    
    Thanks

    Hey there
    "pdf creator" for iPad works flawlessly for me working with pdf files
    It takes care of all my needs
    I'm not sure about sending via Wifi or Bluetooth but I send them via e- mail all the time
    Possibly it could handle your needs as well
    Just type it into the App Store search field and the first one that comes up is the one I use
    Jump on over there and read up on it before buying and see if it will help you 
    Hope this helps
    Regards

  • Search for a file with part of a filename in a given folder.

    How can I search for a file with part of a filename in a given folder?
    Or can I change the columns in Advanced Search so that the heading is filename?

    thanks, Michel. it had occurred to me to put a scratch tag on the folder, but I was hoping for an easier way. in future I'll do as you suggest though, because it's easier than what I have been doing.
    daryl

  • Search inside Coldfusion files with Spotlight?

    I've recently found to my dismay that you cannot search inside .cfm files with Spotlight, and there appears to be no easy way to tell Spotlight to start looking in those files. I would assume that since they're just text files, and Spotlight does seem to search inside .htm files, that it shouldn't be too difficult to get Spotlight to do this, but I'm at a loss as to going about it.
    Can anybody point me in the right direction?
    Thanks.

    For Spotlight to index content there has to be an mdimporter for that content type. If the files are in fact plain text, it is possible to do a bit of hacking to get them indexed, see this discussion at MacOSXHints:
    http://www.macosxhints.com/article.php?story=20050514182520714&query=mdimport
    Be sure to read the comments! And don't do it without a current clone of your system on an external drive that is NOT attached when you try this out (if you do try it).
    Francine
    Francine
    Schwieder

  • Cannot move files with Finder

    Experiencing erratic behavior with Finder.  I am trying to move several files from a folder to the application "PDF Toolkit" and clicking dragging is not working.
    Are there settings that alter click drag behavior?  Can Finder be reset?

    Carmine From Grand Rapids wrote:
    Safari will not open the .pat file.
    you'll need to install the .pat from your NAS.
    control panel > DSM update > manual update
    (open image in new browser window)

  • Searching through .fla files

    Usually when I am looking for a specific field name, section of code or variable, I will run a GREP regex search to search through my ASP files, which works great as they are just stored as plain text, however I was wondering if anyone knows of a way to do the same with ".fla" files.
    The GREP search looks through all my files in one go and returns a list of files which match the search terms; but wouldn't work on .fla files as the actionscript is not stored as plain text. Possibly this would work if I converted all my ".fla"s to use seperate ".as" files but this would be a lot of work and I'd rather avoid it if possible.
    Thanks for any help you can give.

    Select the stage window, then select Search and Replace from the Edit menu. This search tool works pretty well. If you search when an Actionscript window is selected you will only be able to search that one frame of AS.

  • Copying large number of files with Finder

    When you copy lots of files and folders with Finder, it appears to count up the number of "items" and then start copying and at the same time the number of items remaining gets smaller and smaller as the copy process proceeds.
    My question is what are the "items" that Finder is referring to? I did this on a folder with several folders and files and it came up with like about 45K items, but if I open up a Terminal window and do a "find . -print | wc" I get like about 155K lines, which I would have thought were the "items" that Finder is referring to, but obviously not.
    So what is it that Finder means when it talks about "items" when copying things around?
    If it matters I was copying the files from external drive to another external drive. And both external drives were physically attached to the two USB ports on a MacBook Pro running Mac OS X 10.5.8
    Also, is there a way to find out the number of "items" that Finder just copied as sometimes this number goes away so quickly before it registers on my eyeball/brain synapses Darn those fast computers I can go to the Finder's "Edit" menu and undo the last operation but is there somewhere that the number of items last processed can be looked at?
    And one last Finder question - is the progress bar that the Copy operation shows measure the number of items or the magnitude of the amount of MB it has copied or about to copy? So a copy of two items of 10GB each would progress in three discreet jumps (0%, 50% and 100%) and go much quicker versus a copy of 10Billion items of two bytes each - even though a total of 20GB were transferred in both cases?
    Thanks...
    -Bob

    ReallyDeepYogurt wrote:
    My question is what are the "items" that Finder is referring to? I did this on a folder with several folders and files and it came up with like about 45K items, but if I open up a Terminal window and do a "find . -print | wc" I get like about 155K lines, which I would have thought were the "items" that Finder is referring to, but obviously not.
    This is a guess, but I'd think that the Finder considers a "package" to be one item, while the "find" command counts each file within a package.

  • C# How Do I Search Through A List To Find A Particular Variable's Value?

    I have a list containing instances of a class containing several variables, one of which is a boolean. I need to write an algorithm that will search through every class instance in that list and find the item(class instance) where that boolean is set to "true."
    Here's the code I've tried so far:
                bool ActiveQuestion = Questions.Find(item => Questions.ThisIsActiveQuestion == true);
    In this line of code, the list is named "Questions," the class is named "Question" and the boolean within that class is named "ThisIsActiveQuestion." To re-state what I want to do, I want to go through the list and find the class
    in which that boolean is set to "true."

    Something like this
    List<Question> someList = new List<Question>();
    IEnumerable<Question> query = from q in someList where q.IsTrue select q;
    public class Question
    public bool IsTrue;
    “If you want something you've never had, you need to do something you've never done.”
    Don't forget to mark
    helpful posts and answers
    ! Answer an interesting question? Write a
    new article
    about it! My Articles
    *This post does not reflect the opinion of Microsoft, or its employees.

  • Search in external files with Oracke DB?

    Is it possible to use Oracle DB to search in external files (Excel and Word)?
    If yes, does it work in version 7 and 8 also?
    Per Magne

    Is it possible to use Oracle DB to search in external files (Excel and Word)?
    If yes, does it work in version 7 and 8 also?
    Per Magne Yes it is possible. The name for this feature is different in each version and I recommend to use 8.1.7 or 9i and you can use a FILE_DATASTORE.
    Oracle is using a third party apllication (INSO-Filter) to covert excel,word,... to html and index these.
    7/8 context option (or cartridge)
    8i Intermedia Text
    9i Oracle Text
    For further in see the documention here on technet.
    Thomas

  • How do I delete Templates?  I search for the templates with finder, in library, applications, logic, project templates. But, I can't find my templates there.

    How do I delet templates? I can`t find the templates with finder. I try in Libary, applications, Logic, Project templates. But, I can`t find my templates there. I find Logics templates, compose, explore and produce.

    pauloman80 wrote:
    User-created templates are located in username > Library > Application Support > Logic > Project Templates.
    Hi
    Note that in Lion OS, the User Library is hidden by default.
    Use the Finder:Go Menu (hold down Option to add the User Library to the menu).
    CCT

  • Searching through text file

    Hi guys,
    I want to search for a string in a file then copy everything after it into a string array i guess, basically the requirement is that where i work we get letters they are usually a paragraph long what i want to do is just just copy those paragraphs into a variable and save them to a database with the date and time. if i can be pointed towards the write API or a sample code that would be highly appreciated.
    Thank you in advance.
    regards
    zeeshan

    Say your paragraphs are seperated by a empty line (\n)
    import java.io.*;
    public class New{
      public static void main(String args[]){
        try{
          new New().getParagraphs(args[0],args[1]);
        }catch(Exception ex){
          ex.printStackTrace();
      public String[] getParagraphs(String after, String fileName) throws Exception{
        File file = new File(fileName);
        if(!file.exists())
          throw new Exception("File not Found");
        else{
          BufferedReader br = new BufferedReader(new FileReader(file));
          String fileData = "";
          String temp = null;
          boolean canCopy = false;
          while((temp = br.readLine()) != null)
            if(canCopy)
              fileData += temp + "\n";
            else
              if(temp.indexOf(after) != -1){
                canCopy = true;
                fileData += temp.substring(temp.indexOf(after) + after.length()) + "\n";
        return fileData.split("\n");
    }Edited by: gtRpr on 2008/06/26 01:36

  • Lost IPAD.  Has passcode.  Powered off and cellular off due to traveling out of country.  Is there any hope of locating through Icloud account with Find my IPAD app which I had installed?

    I left my IPAD on an airplane last night in the states.  It has a passcode and is registered through Icloud with the Find my IPAD app.  The IPAD is password protected.  It was powered down and cellular data was turned off because I was travelling out of the country.  Is there any chance of locating the IPAD through the Find my IPAD app since the WI-FI and cellular service is turned off?  Please help.

    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • Start backups from scratch (or a.k.a. fiddling with sparsebundle files)

    +Also posted here following a user advise in the Time Machine forum+
    I've got a Time Capsule and want to start a new full backup of my Mac keeping a copy of my previous series. Since it seems that it's not possible to partition a TC an alternative solution AFAIU could be renaming the corresponding sparsebundle file.
    The steps I would do are:
    1. Stop TM.
    2. Change TM's drive to None.
    3. In Finder, rename MacXXXmacaddressXXX.sparsebundle to, say, ....sparsebundleOLD
    4. Restart TM.
    5. Point TM's drive to TC.
    (or should be step 5 before step 4?)
    Later on, when some backup cycles are performed and things appear to work as expected, I would try the receipt someone else posted around here that let you make sparsebundle files with a max size http://fon.gs/rchu57 (sorry, didn't save the link of the thread)
    Am I on track or have missed something important? Is it a safe procedure? (*) I don't mind to experiment a bit, but on backups I want to double check first.
    Thanks in advance,
    Hernan.
    (*) You don't need to add a disclaimer, it's implicit.
    (**) ENVIRONMENT: MacBook 13.3 Unibody. SL 10.6.1. Time Capsule from June 2009.

    Finally I've got the time to do some research. It's explained in the sister thread:
    http://discussions.apple.com/thread.jspa?threadID=2158082&tstart=0
    Marked this question as answered just for the records.

  • On lightroom 5.6 (mac) message says "the file named _dsc0189.Nef could not be moved to trash folder. what do I do besides manually search and move hundreds of files?

    message button pops up saying The file named _dsc0189.NEF could not be moved to the trash folder.
    I have hundreds if not a couple thousand images that I will be wanting to delete. Any suggestions besides manually
    search for these files and dragging them to the trash.
    Mac
    I have tried restarting the computer and lightroom

    Same issue here!

  • RE: Where are Time Machine sparsebundle files on Time Capsule?

    I recently bought a Time Capsule. After some odd issues trying to get it to work in place of my Airport Extreme, it looked like it was finally working correctly.
    When I first turned it on (before the problems getting it to work wirelessly), I did a full backup with Time Machine on the Capsule via Ethernet. When I clicked on the Time Capsule, I could see the sparsebundle files with a number and a date.
    Somewhere down the line, I knocked all of our computers offline while trying to get Time Capsule to replace the Airport Extreme station after I ran the first backup on it.
    I finally had to call Apple Support to have them walk me through setting up Time Capsule correctly and get us back online. After several attempts, we finally got it all working, but in the process the original backup files disappeared from Time Capsule, so I ran Time Machine again. It said it completed the full backup (again), and it was doing incremental backups.
    My problem is, I cannot see any files on the Time Capsule when I click on it. Is that the way Time Machine/Time Capsule are supposed to work? No folder called Backup, no files. When I enter Time Machine, I see that it's backing up, but it kind of worries me that I can't SEE the sparsebundle files anywhere.
    Any idea of where those files are hiding? I guess I'm used to using Backup, where I could actually see a list of files.

    Any idea of where those files are hiding? I guess I'm used to using Backup, where I could actually see a list of files.
    Time Machine stores backups over the network in the form of a sparse bundle "file". This file should show up in Finder as "ComputerName_MACaddress.sparsebundle". However, the sparse bundle is not actually a file, but a container/folder with a number of files, called bands within it.
    You can access the backup files within the sparse bundle, by using Finder, as follows:
    o From within Finder, click on the Time Capsule (TC) that appears under the Shared category
    o Double-click on the TC's disk name
    o Double-click on the sparse bundle
    It may take a while but eventually the disk image will open and you will see a folder named "Backups.backupd." This folder contains the Time machine backups.

Maybe you are looking for

  • Password for RSS iPhoto feed

    I created a photocast album then set the Name and Password to the photocast album. It uploaded and I was off to my mom's to set it up on her computer (mac mini). Got all the updates, install iLife 06, but would not recognize the password. errrrrrrrrr

  • Sync ipod classic with new HD

    I replaced HD on MBP and upgraded to itunes 11.  I have two ipod classics and an iphone 4s.  When i connect ipods they get recognized show in sidebar and do a real quick sync, but don't add any of the music i just put in itunes yesterday (that's how

  • Why SSH is secured over telnet

    Why SSH is secured over telnet? Hi folks, Why telnet is not secured and why SSh is secured? Regards Thanveer "Everybody is genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is a stupid."    

  • Grid overlay when not cropping?

    I am doing a sequence of photos and it would be extremely helpful if there was a grid overlay for the photo I am working on when I am not in crop mode, the same as the thirds grid overlay you see when using the crop tool.

  • Microsoft  Patch Issue

    Pl take a look at the Microsoft Patch issue.since we are using flash in a big way.This has an impact on several applications we support. We noticed the problem because we are using non-applicable machines that already have the new patch applied.Any a