Follow us on...
Follow us on Twitter Follow us on Facebook
Register
Page 2 of 2 FirstFirst 12
Results 9 to 15 of 15
  1. #9
    simbalala is offline Registered User
    Join Date
    Jul 2005
    Posts
    1,036
    Thanks
    0
    Thanked 15 Times in 15 Posts
    Quote Originally Posted by Natobasso View Post
    Get Parallels or Bootcamp?
    umm, on a G4?

  2. #10
    Natobasso's Avatar
    Natobasso is offline Tech-Bot 5000
    Join Date
    Jul 2002
    Location
    Auckland, New Zealand
    Posts
    3,370
    Thanks
    1
    Thanked 24 Times in 23 Posts
    umm, didn't see your comp.

    Virtual PC?

    Can you post a screenshot of your directory structure/folder names? Maybe your names are too long? I do know you're dealing with the mac has 2 directory forks and the pc only 1 issue...
    Last edited by Natobasso; April 28th, 2008 at 12:15 PM.

  3. #11
    simbalala is offline Registered User
    Join Date
    Jul 2005
    Posts
    1,036
    Thanks
    0
    Thanked 15 Times in 15 Posts
    Quote Originally Posted by Natobasso View Post
    umm, didn’t see your comp.

    Virtual PC?
    I’m not going to spend any money on this when I have a viable solution using the web server. I think others may benefit from any solution though.

    I can’t give you a screenshot because I don’t have a PC here but you can see for yourself. Set up a dummy folder with a couple more inside, nest them. Add some files inside each folder and zip up the top level folder. Move the zip to a PC and unzip it.

    Edit: There is actually a PC here but it belongs to my sister. So if I did anything at all techie with it and a meteor came crashing through the roof destroying it I’d get the blame.
    Last edited by simbalala; April 28th, 2008 at 12:34 PM.

  4. #12
    Mikuro's Avatar
    Mikuro is offline Crotchety UI Nitpicker
    Join Date
    Mar 2005
    Posts
    2,832
    Thanks
    8
    Thanked 74 Times in 64 Posts
    That problem sounds vaguely familiar, but I've never encountered it myself. Are you sure that still happens with Tiger and Leopard? I don't think I ever used it much in Panther. Back then I used StuffIt to make zips.

    Then again, I guess it's possible the people I give zips to just never complained about it. This problem happens on both Windows and Linux?
    Mac mini — 1.25GHz G4, 1GB RAM — OS 10.5.8
    MacBook Pro — 2.26GHz C2D, 8GB RAM — OS 10.6.8

    Useful programs: Privoxy, Butler, ffmpegX, VLC, Perian, Tofu, Wcalc

  5. #13
    simbalala is offline Registered User
    Join Date
    Jul 2005
    Posts
    1,036
    Thanks
    0
    Thanked 15 Times in 15 Posts
    I’ve been on the sending side, I’ve never seen the actual result, I don’t really know the people who’ve complained.

    It’s a public site with a library of routines and I’ve been told of the problem. It does make sense, we do know that Apple does use colons internally. Try putting one in a file name or just ask an app to give you the HFS path to a file, it’s like so:
    Code:
    Computer:Users:myname:Desktop:test.jpg
    Edit: I’m on Tiger and the problems have been reported while I’ve been on Tiger. I was zipping using the contextual menu when the problem was reported, I don’t know if the result is the same when using the command line in Terminal. I just wanted to eliminate the problem for sure so I switched to the safe haven of the Linux webserver.

    Anyone here running a dual boot OS X/Windows system or with a Windows PC at hand can check this for us.
    Last edited by simbalala; April 28th, 2008 at 09:10 PM.

  6. #14
    fulmar2 is offline Registered User
    Join Date
    May 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Zip Files From Mac to PC

    There is an inexpensive program that does just what you are asking. It creates a ZIP file with no hidden mac files. It's really easy to use (drag and drop). I use it every day! It seems to stumble when there are certain characters in the filenames - but other than that, a solid application.

  7. #15
    bondibox is offline Registered User
    Join Date
    Apr 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts
    You could use the terminal's zip program to "exclude" those files. From the man page:

    zip -r foo foo -x \*.o
    which will include the contents of foo in foo.zip while excluding all the files that end in .o. The backslash avoids the shell filename substitution, so that the name matching is performed by zip at all directory levels.
    Some other examples would be
    (#exclude .DS_Store files) zip -r archive.zip myprojectdirectory -x \.DS_Store
    (#exclude subversion files) zip -r archive.zip myprojectdirectory -x \.svn
    (#exclude all hidden files) zip -r archive.zip myprojectdirectory -x \.*

 

 
Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •