2.3.17 FolderName

A URL for the document library hosted on the protocol server. When the value of the Type attribute of the Type element equals "SharePointLibrary", this element and its value MUST exist. Otherwise, it MUST be ignored by the protocol client and protocol server.

Parent Elements

UpdateCommand

Attributes:

AllowOverwrite: Determines whether a file override is allowed or not. If the value of this attribute is "true" or "1", the protocol server MUST overwrite the content stored in the document library. Otherwise, the protocol server MUST NOT overwrite any content in the document library.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this element.

 <xsd:element name="FolderName">
   <xsd:complexType>
     <xsd:simpleContent>
       <xsd:extension base="xsd:string">
         <xsd:attribute name="AllowOverwrite" use="optional">
           <xsd:simpleType>
             <xsd:restriction base="xsd:string">
               <xsd:enumeration value=""/>
               <xsd:enumeration value="0"/>
               <xsd:enumeration value="1"/>
               <xsd:enumeration value="false"/>
               <xsd:enumeration value="true"/>
             </xsd:restriction>
           </xsd:simpleType>
         </xsd:attribute>
       </xsd:extension>
     </xsd:simpleContent>
   </xsd:complexType>
 </xsd:element>