Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Chris Fouts
I got it to work this way, that is, without the last * in the include 
elements.

target name=removeReadOnly
description=Remove read-only attribute of files
attrib readonly=false
fileset 
include name=C:\Some 
Folder\** /
include name=C:\Other 
Folder\** /
/fileset 
/attrib
/target

-Original Message-
From: Wilson, Brian [mailto:brian.wil...@dhr.alabama.gov] 
Sent: Thursday, May 05, 2011 9:29 AM
To: Chris Fouts
Subject: RE: Help recursively setting readonly attribute

I tried all kinds of options, for the attrib tag and could not get it to work.  
I can use a fileset on other tags, like delete and copy, but it does not seem 
to work with attrib.  The only other option I know of that may work is a 
foreach loop, that may work for the files as I know this works.  However, I am 
not sure how to set the attribute for a folder.



Brian Wilson
Programmer Analyst, Associate
Department of Human Resources
Email: brian.wil...@dhr.alabama.gov


From: Chris Fouts [mailto:chris.fo...@caemilusa.com] 
Sent: Wednesday, May 04, 2011 5:01 PM
To: nant-users@lists.sourceforge.net
Subject: [NAnt-users] Help recursively setting readonly attribute

I thought I had this, but apparently not, since I can't overwrite files in 
them. I run as Administrator so I have permission to do this.

I want to set the read-only attribute for all files and subdirs under the two 
directories

target name=removeReadOnly
    description=Remove read-only attribute of files
    attrib readonly=false
    fileset 
    include name=C:\Some 
Folder\**\* /
    include name=C:\Other 
Folder\**\* /
    /fileset 
    /attrib
/target

What am I missing?

-chris



***This e-mail message is intended only for the above named recipient(s)
and may contain information that is sensitive or proprietary. If you have
received this message in error or are not the named recipient(s), please 
immediately notify the sender, delete this e-mail message without making
a copy and do not disclose or relay this e-mail message to anyone.***

--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Bob Archer
If you want to set the read only attribute, wouldn't you set readonly=true ???

BOb


From: Chris Fouts [mailto:chris.fo...@caemilusa.com]
Sent: Wednesday, May 04, 2011 6:01 PM
To: nant-users@lists.sourceforge.net
Subject: [NAnt-users] Help recursively setting readonly attribute

I thought I had this, but apparently not, since I can't overwrite files in 
them. I run as Administrator so I have permission to do this.

I want to set the read-only attribute for all files and subdirs under the two 
directories

target name=removeReadOnly
description=Remove read-only attribute of files
attrib readonly=false
fileset
include name=C:\Some 
Folder\**\* /
include name=C:\Other 
Folder\**\* /
/fileset
/attrib
/target

What am I missing?

-chris



***This e-mail message is intended only for the above named recipient(s)
and may contain information that is sensitive or proprietary. If you have
received this message in error or are not the named recipient(s), please
immediately notify the sender, delete this e-mail message without making
a copy and do not disclose or relay this e-mail message to anyone.***
--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Chris Fouts
I did NOT want the files to be read only, hence false. I should've said I 
wanted to set the read only attribute to false.

-chris

From: Bob Archer [mailto:bob.arc...@amsi.com]
Sent: Thursday, May 05, 2011 9:59 AM
To: Chris Fouts; nant-users@lists.sourceforge.net
Subject: RE: Help recursively setting readonly attribute

If you want to set the read only attribute, wouldn't you set readonly=true ???

BOb


From: Chris Fouts [mailto:chris.fo...@caemilusa.com]
Sent: Wednesday, May 04, 2011 6:01 PM
To: nant-users@lists.sourceforge.net
Subject: [NAnt-users] Help recursively setting readonly attribute

I thought I had this, but apparently not, since I can't overwrite files in 
them. I run as Administrator so I have permission to do this.

I want to set the read-only attribute for all files and subdirs under the two 
directories

target name=removeReadOnly
description=Remove read-only attribute of files
attrib readonly=false
fileset
include name=C:\Some 
Folder\**\* /
include name=C:\Other 
Folder\**\* /
/fileset
/attrib
/target

What am I missing?

-chris



***This e-mail message is intended only for the above named recipient(s)
and may contain information that is sensitive or proprietary. If you have
received this message in error or are not the named recipient(s), please
immediately notify the sender, delete this e-mail message without making
a copy and do not disclose or relay this e-mail message to anyone.***
--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] Help recursively setting readonly attribute

2011-05-05 Thread Bob Archer
Ah got it... the include patterns are a bit tricky.

From: Chris Fouts [mailto:chris.fo...@caemilusa.com]
Sent: Thursday, May 05, 2011 10:11 AM
To: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] Help recursively setting readonly attribute

I did NOT want the files to be read only, hence false. I should've said I 
wanted to set the read only attribute to false.

-chris

From: Bob Archer [mailto:bob.arc...@amsi.com]
Sent: Thursday, May 05, 2011 9:59 AM
To: Chris Fouts; nant-users@lists.sourceforge.net
Subject: RE: Help recursively setting readonly attribute

If you want to set the read only attribute, wouldn't you set readonly=true ???

BOb


From: Chris Fouts [mailto:chris.fo...@caemilusa.com]
Sent: Wednesday, May 04, 2011 6:01 PM
To: nant-users@lists.sourceforge.net
Subject: [NAnt-users] Help recursively setting readonly attribute

I thought I had this, but apparently not, since I can't overwrite files in 
them. I run as Administrator so I have permission to do this.

I want to set the read-only attribute for all files and subdirs under the two 
directories

target name=removeReadOnly
description=Remove read-only attribute of files
attrib readonly=false
fileset
include name=C:\Some 
Folder\**\* /
include name=C:\Other 
Folder\**\* /
/fileset
/attrib
/target

What am I missing?

-chris



***This e-mail message is intended only for the above named recipient(s)
and may contain information that is sensitive or proprietary. If you have
received this message in error or are not the named recipient(s), please
immediately notify the sender, delete this e-mail message without making
a copy and do not disclose or relay this e-mail message to anyone.***
--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users