SPFileCollection.Add Method (String, Byte , Hashtable, Boolean)
Creates a file in the collection using the specified URL, a byte array that contains the contents of a file, a hash table that contains metadata for the file, and a Boolean value that specifies whether to overwrite any file that has the same name.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Function Add ( _
urlOfFile As String, _
file As Byte(), _
properties As Hashtable, _
overwrite As Boolean _
) As SPFile
'Usage
Dim instance As SPFileCollection
Dim urlOfFile As String
Dim file As Byte()
Dim properties As Hashtable
Dim overwrite As Boolean
Dim returnValue As SPFile
returnValue = instance.Add(urlOfFile, _
file, properties, overwrite)
public SPFile Add(
string urlOfFile,
byte[] file,
Hashtable properties,
bool overwrite
)
Parameters
urlOfFile
Type: System.StringThe site-relative URL of the file.
file
Type: []A byte array that contains the file.
properties
Type: System.Collections.HashtableA hash table that contains metadata for the file.
overwrite
Type: System.Booleantrue to overwrite a file of the same name; otherwise, false.
Return Value
Type: Microsoft.SharePoint.SPFile
The newly added file.