Register FAQ/Rules Forum Spy Search Today's Posts Mark Forums Read

Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate.

 
Go Back   Mac Forums > Apple Systems and Services > Mac OS X
TouchArcade.com - iPhone Game Reviews and News

Reply
 
Thread Tools Search this Thread  
Old Nov 6, 2007, 06:31 PM   #1
joeyjoe9
macrumors newbie
 
Join Date: Jul 2007
Leopard locked my My Documents folder

I formatted my Boot Camp partition to be FAT32 specifically so I would have access to the My Documents folder on the Windows side, but Leopard has now inexplicably locked that folder, preventing me from saving to that folder. I cannot un-lock from either the Mac or Windows side.

Anybody know what I can do?
joeyjoe9 is offline   Reply With Quote
Old Nov 6, 2007, 06:41 PM   #2
illuminous
macrumors member
 
Join Date: Oct 2007
I have had the exact same problem with a folder on my external hard disk. It is locked in leopard, so cannot add or delete anything from it. To do anything I have to restart into Windows, where I can access it. I have tried removing the 'Locked' option using finder but it just won't let me??? Help!!!
illuminous is offline   Reply With Quote
Old Nov 6, 2007, 06:46 PM   #3
theman
macrumors 6502a
 
Join Date: Jul 2007
when i moved a bunch of folders from my old pc to my MBP, it kept locking down some of them, seemingly randomly. i don't understand why.
theman is offline   Reply With Quote
Old Nov 14, 2007, 03:57 PM   #4
Manna
macrumors newbie
 
Join Date: Nov 2007
I´ve had the same thing happen to me. Several, seemingly random, folders on my external hdd have been locked since I installed Leopard. I´ve tried all sorts of things, anyone know a fix for this?
Manna is offline   Reply With Quote
Old Nov 16, 2007, 02:02 AM   #5
bacchuswng
macrumors newbie
 
Join Date: Nov 2007
In modern versions of Windows, the read-only bit on folders designates them as "special folders." This includes folders such as Program Files, My Documents, My Pictures, etc. Note that Windows Explorer itself does *not* respect the read-only bit (i.e. it allows people to arbitrarily modify these folders), and all of this was apparently done "by design" (although this is quite possibly the most idiotic design I have heard in a while). More info on that here: http://support.microsoft.com/kb/326549

Anyway, Leopard respects the read-only bit, and as a result, you see the lock in Finder. The way to get around this is by removing the read-only bit. As Windows Explorer itself will not allow you to do this, you must do it in the (Windows) command line using attrib. For example:

attrib -r +s "C:\Documents and Settings\username\My Documents"

Although Windows Explorer will not confirm that the read-only bit has been disabled, typing in attrib without the -r +s will confirm this. Note that I am adding a +s to turn on the system flag, which is the suggested workaround by Microsoft (in the link above).

You should be able to write in those folders after this.

Last edited by bacchuswng : Nov 16, 2007 at 02:26 AM.
bacchuswng is offline   Reply With Quote
Old Nov 28, 2007, 04:09 PM   #6
catroom
macrumors newbie
 
Join Date: Nov 2007
still can't copy from OSX partition to Win XP

I’ve created a bootcamp partition (FAT32) in Leopard, installed Win XP and all my applications etc and everything works OK. Except now, when booted into MacOSX, I cannot copy files from the Mac side into My Documents folder in the Win Partition like I used to be able to do in Tiger. Whenever I try, a window comes up saying “The operation cannot be completed because you do not have sufficient privileges for some of the items”. It seems that it will copy whatever folders I want to copy but not the docs in those folders????

Some of the folders in the Win partition are locked so I tried the suggestion above and although they get unlocked I still can't copy.

Anyone else had success?
catroom is offline   Reply With Quote
Old Jan 6, 2008, 06:48 PM   #7
kenjidnb
macrumors newbie
 
Join Date: Jan 2008
Quote:
Originally Posted by bacchuswng View Post
In modern versions of Windows, the read-only bit on folders designates them as "special folders." This includes folders such as Program Files, My Documents, My Pictures, etc. Note that Windows Explorer itself does *not* respect the read-only bit (i.e. it allows people to arbitrarily modify these folders), and all of this was apparently done "by design" (although this is quite possibly the most idiotic design I have heard in a while). More info on that here: http://support.microsoft.com/kb/326549

Anyway, Leopard respects the read-only bit, and as a result, you see the lock in Finder. The way to get around this is by removing the read-only bit. As Windows Explorer itself will not allow you to do this, you must do it in the (Windows) command line using attrib. For example:

attrib -r +s "C:\Documents and Settings\username\My Documents"

Although Windows Explorer will not confirm that the read-only bit has been disabled, typing in attrib without the -r +s will confirm this. Note that I am adding a +s to turn on the system flag, which is the suggested workaround by Microsoft (in the link above).

You should be able to write in those folders after this.
All comprehensive and very nice answer!

Thank you bacchuswng, you fixed my problem!!
kenjidnb is offline   Reply With Quote
Old Apr 28, 2008, 06:50 AM   #8
penthang
macrumors newbie
 
Join Date: Dec 2005
Quote:
Originally Posted by catroom View Post
I’ve created a bootcamp partition (FAT32) in Leopard, installed Win XP and all my applications etc and everything works OK. Except now, when booted into MacOSX, I cannot copy files from the Mac side into My Documents folder in the Win Partition like I used to be able to do in Tiger. Whenever I try, a window comes up saying “The operation cannot be completed because you do not have sufficient privileges for some of the items”. It seems that it will copy whatever folders I want to copy but not the docs in those folders????

Some of the folders in the Win partition are locked so I tried the suggestion above and although they get unlocked I still can't copy.

Anyone else had success?
On an apple support forum I read that a folder containing a desktop.ini file could not be unlocked with the answer being to delete this file. I haven't tried this yet but it seemed to work for the folks there.
penthang is offline   Reply With Quote
Old Nov 7, 2008, 11:44 PM   #9
leena
macrumors newbie
 
Join Date: Nov 2008
Quote:
Originally Posted by bacchuswng View Post
In modern versions of Windows, the read-only bit on folders designates them as "special folders." This includes folders such as Program Files, My Documents, My Pictures, etc. Note that Windows Explorer itself does *not* respect the read-only bit (i.e. it allows people to arbitrarily modify these folders), and all of this was apparently done "by design" (although this is quite possibly the most idiotic design I have heard in a while). More info on that here: http://support.microsoft.com/kb/326549

Anyway, Leopard respects the read-only bit, and as a result, you see the lock in Finder. The way to get around this is by removing the read-only bit. As Windows Explorer itself will not allow you to do this, you must do it in the (Windows) command line using attrib. For example:

attrib -r +s "C:\Documents and Settings\username\My Documents"

Although Windows Explorer will not confirm that the read-only bit has been disabled, typing in attrib without the -r +s will confirm this. Note that I am adding a +s to turn on the system flag, which is the suggested workaround by Microsoft (in the link above).

You should be able to write in those folders after this.
does anyone know if it's possible to remove this bit without using windows?
leena is offline   Reply With Quote

Reply

Mac Forums > Apple Systems and Services > Mac OS X

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 10:00 PM.

Mac News | Mac Rumors | iPhone Game Reviews | iPhone Apps

Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright 2002-2010, MacRumors.com, LLC