How Do I Delete Hidden Files in Compressed Folders?

I'm working on a mac and sometimes I compress files and send them to be opened on a PC. Is there anyway to delete the hidden files that mac adds to a zip file before sending it, or disable their creation completely? I'm thinking about getting a mac at home, but this could be one of the deal breakers.
Kevin

There are ways to make hidden files visible in the finder, but here I don't think that will help - the files you are seeing are CREATED by the finder, and you are presumably using the finder to make your zip files. So if you make these files visible and try to delete them using the finder before creating your archive they will probably just be re-created. You can delete any file manually in terminal, but I doubt you could do it within an archive.
Another solution would be to use a stand-alone application to create the zip files instead of the finder. Browsing VersionTracker I came upon "YemuZip", freeware at
http://www.yellowmug.com/yemuzip/
Again I haven't tried it, but it claims to be able to exclude the Mac-specific files that show up on PCs.
Some of these freeware utilities are very handy - at least worth a look.

Similar Messages

  • How can I delete hidden video files from the iPad?

    How can I delete hidden video files from the iPad?  These files were created on my MBA and when I changed the media type to iTunesU and then copied it to my iPad via iTunes, they did not appear.  I can see them using 3rd party software, but they don't have delete functionality.
    Thanks
    York

    Interesting note:  I can see the files when I use the search function, but when I tap either file, I return to my home screen.  The video does not open.  I can transfer the file to my MBA, and it plays fine, but I cannot figure out a way to delete them.

  • USB/SDcard deleted/hidden files

    Hi All
    I realised myself quite recently that files that were 'deleted' on a USB stick were still taking up space on the USB dongle. Anyway it didn't occur to me to empty the trash because 'windows' doesn't work like that, until that is I read some of the other posts.
    Even so when USB dongles or SD cards that contain or have contained 'deleted' files I've seen that the iMAC has inserted new folders on the external dongle/SD called .Trash & .Spotlight. I only saw these folders & their contents when the dongle/SD card was connected to a Cyclone Micro Media device. This explained why the Cyclone doesn't recognise these 'deleted' photo JPGs & stops the slide show i.e. because they have two dots in the filename (eg .IMAGE001.JPG) which the Cyclone doesn't like.
    Sorry to whitter on ... my questions are:
    +- can the Mac OS display files that are hidden (as you can do on windows) in the Trash (or elsewhere for that matter)+
    +- why doesn't the Finder display of the Trash identify the full path name - by that I mean identify the actual device that holds the 'deleted' file. It doesn't seem to me that the 'deleted' files on a particular device can be identified from the list? or havn't I found the method yet?+
    +- would dropping into unix reveal such information and could you then delete the 'deleted' files held on a specific external device?+
    thanks -- keith

    HI red4vr,
    welcome to the forums.
    http://osxdaily.com/2009/02/25/show-hidden-files-in-os-x/ explains how to hide/show hidden files in the finder. As well as how to list hidden files in the terminal, and in the save/open dialog box. There are lots of hidden files on the computer that you should under no circumstance try to delete. A good rule of thumb is if you didn't make the folder, or what's in the folder; don't delete it. don't rename it, don't move it.
    If this is some thing you want to do on a regular basis you may want to use a program like 'blind." http://www.macupdate.com/app/mac/22495/blind this program adds a tool bar button to hide/show hidden files.
    You are correct about the trash can, it shows every thing (not counting hidden files) in the trash for all the drives connected. If you want to tell what is on a specific external volume. You can goto that trash folder.
    ie: finder, menu bar, go menu, goto folder, /volumes/NameOfVolume/.Trash
    Have a great new year

  • HT3842 Deleting Hidden files?

    How do you delete Hidden Apps Permanently?

    Hi rjans1234;
    Be careful! Generally files are hidden for a reason, that being so they don't get deleted because they generally are part of the system.
    I would suggest backing up before you do this. I suggest you make a bootable clone just in case what you delete causes the system not to reboot.
    Allan

  • How do you delete .pdf files?

    How do you delete pdf files from android Adobe Reader?  I  can delete the files, how do I
    delete the file name from the Adobe Reader file list, especially duplicate file names.
    someone  please help me. this will have to be done from  within the Reader, I  think. ?

    The full instructions are here: http://learn.adobe.com/wiki/display/readermobile/Android+FAQ.
    Ben

  • How do I delete a file from Reader?

    How do I delete a file from Adobe Reader?

    Files are not kept "in" Adobe Reader, but on your local disk, or at Acrobat.com
    Do you want to delete entries from the "recent" file list?

  • How do I delete a file from the Adobe Reader for iOS?

    How do I delete a file from the Adobe Reader for iOS?

    Read this:
    http://forums.adobe.com/thread/1012973?tstart=0

  • How can I delete a file from Adobe Acrobat Reader DC?

    How can I delete a file from Adobe Acrobat Reader DC?

    What operating system do you use? Where do you store the files?

  • How do i delete Older files from the directory before create a new file?

    Hi,
    How do i delete older files in a particular directory,
    the senorio is count the number of .txt files in a directory and delete the older files if file count is more than 10. (if i add 11th file the very first file has to be deleted)
    i have written the code to count the files and delete , but it is deleting all the files instead of older file
    public class ExtensionFilter implements FilenameFilter {
      private String extension;
      public ExtensionFilter( String extension ) {
        this.extension = extension;            
      public boolean accept(File dir, String name) {
        return (name.endsWith(extension));
    public class FileUtils{
      public static void main(String args[]) throws Exception {
        FileUtils.deleteFiles("c:/countfile/", ".txt");
      public static void deleteFiles( String directory, String extension ) {
        ExtensionFilter filter = new ExtensionFilter(extension);
        File dir = new File(directory);
        String[] list = dir.list(filter);
        File file;
        if (list.length == 0) return;
        for (int i = 0; i < list.length; i++) {
          //file = new File(directory + list);
    file = new File(directory, list[i]);
    if ((list[i]).length()>=10)
         System.out.print(file + " deleted : " + file.delete());
    Thanks,
    Jamin Rosina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What your code is doing now, is deleting all filenames that are longer than 10 characters.
    Your problem lies in the line:
    if ((list).length()>=10)

  • How do you delete a file from an iPad?

    How do you delete a file from an iPad?
    There are 2 versions of a document file on my iPad.
    I want to get rid of the obsolete one.
    The iPad Users Guide does not describe how to delete a document file.
    This is very frustrating!

    The iPad Guide is for the iPad itself, not other apps you may install.
    If you use Pages then read the online help here: http://help.apple.com/pages/ipad/2.2/ - specifically this: http://help.apple.com/pages/ipad/2.2/#/tancfc4d5c02
    Delete a document from your iOS device
    In the document manager, tap Edit.
    When the documents begin to jiggle, tap the ones you want to delete.
    Tap , then tap Delete Documents.To cancel, tap anywhere in the document manager background, or tap Done.

  • I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    From the Finder menu select 'Secure Empty Trash'. If this or the suggestion above doesn't resolve the problem take a look at the various suggestions in this link:
    http://www.thexlab.com/faqs/trash.html

  • How can I delete PDF files from my iMac desktop?

    How can I delete PDF files from my iMac desktop?

    Not on my system,When I try to dump if off in the trash it will not go. I get a message that says this file cannot be removed. I also tried going to File and clicking on Move to Trash. No dice.

  • How can I delete the files .DS_store in Mac OS Yosemite?

    How can I delete the files .DS_store in Mac OS Yosemite?

    The .DS_Store file is normal. It holds certain settings related to the folder it is found in. Removing these files is futile, as they will come back, as you have observed.
    If you are seeing them on your Mac, that means you have changed settings so that your Mac is showing invisible files in the Finder. To reverse that, run the following command in the Terminal:
    defaults write com.apple.finder AppleShowAllFiles NO
    This will hide them, and any other invisible files, from view.
    If you are seeing them on a Windows machine, just ignore them. They're not doing any harm.
    If you found a Terminal command that is supposed to stop them from being created, I would be extremely skeptical as to the wisdom of running it.

  • Time capsule intern.1TB hard drive.How can I delete all files

    Hello How can I delete all files from my timecapsule.
    I have connectet it with Wifi or ethernet. It is not possible.
    I have made a reset.
    I have tried it often.
    Please help
    Greetings from Vienna
    Pepimeier

    If you open Macintosh HD > Applications > Utiltiies > AirPort Utility and click Manual Setup, are you able to access the settings for the Time Capsule?
    Or, does AirPort Utility scan for the Time Capsule and then not find it?

  • How do I delete individual files in Trash

    I have a habit of moving a lot of stuff to my trash bin.  Now after a couple of years I want to recover a lot of the space it's using on my hard drive.  So my question, how do I delete individual files in my trash bin without emptying all the contents in my trash bin?  Is this at all possible?

    Move the files you wish to keep out of the trash, delete the rest.

Maybe you are looking for