views:

236

answers:

1

I have godaddy asp.net hosting. Every time I upload the build, it’s a manual laborious task of setting write permissions(to folders) through the web interface.

Is this something I can automate? Are there any nant /script tasks with which can do this?

+2  A: 

NAnt <attrib> task can do this.

<!-- readonly="false" is default - for clarity only -->
<attrib readonly="false">
  <fileset basedir="C:\foo">
    <include name="**/*" />
  </fileset>
</attrib>
The Chairman