SPWeb.GetFile - Méthode (String)
Récupère l'objet de fichier situé à l'URL spécifiée.
Espace de noms : Microsoft.SharePoint
Assembly : Microsoft.SharePoint (dans Microsoft.SharePoint.dll)
Syntaxe
'Déclaration
Public Function GetFile ( _
strUrl As String _
) As SPFile
'Utilisation
Dim instance As SPWeb
Dim strUrl As String
Dim returnValue As SPFile
returnValue = instance.GetFile(strUrl)
public SPFile GetFile(
string strUrl
)
Paramètres
strUrl
Type : System.StringL'URL pour le fichier.
Valeur renvoyée
Type : Microsoft.SharePoint.SPFile
Le fichier objet avec l'URL spécifiée.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | strUrl est null . |
ArgumentException | strUrl a ou est vide. |
Remarques
Cette méthode appelle le constructeur de SPFile avec this et strUrl.
Exemples
L'exemple de code suivant charge le fichier default.aspx .
SPFile file = web.GetFile("default.aspx");
if(file.Exists) // here, this condition will return always false
{
// …
}