Méthode Folder2.Synchronize
Synchronise tous les fichiers hors connexion dans le dossier .
Syntaxe
iRetVal = Folder2.Synchronize()
Paramètres
Cette méthode n’a aucun paramètre.
Notes
Pour utiliser cette méthode, la fonctionnalité Fichiers hors connexion doit être activée.
Exemples
L’exemple suivant montre l’utilisation appropriée de Synchronize pour JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnSynchronizeJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder2 = new Object;
objFolder2 = objShell.NameSpace("\\\\server\\share\\folder");
if (objFolder2 != null)
{
objFolder2.Synchronize();
}
}
</script>
Vbscript:
<script language="VBScript">
function fnSynchronizeVB()
dim objShell
dim objFolder2
set objShell = CreateObject("shell.application")
set objFolder2 = objShell.NameSpace("\\server\share\folder")
if (not objFolder2 is nothing) then
objFolder2.Synchronize
end if
set objFolder = nothing
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnSynchronizeVB()
Dim objShell As Shell
Dim objFolder2 As Folder2
Set objShell = New Shell
Set objFolder2 = objShell.NameSpace("\\server\share\folder")
If (Not objFolder2 Is Nothing) Then
objFolder2.Synchronize
End If
Set objFolder2 = Nothing
Set objShell = Nothing
End Sub
Spécifications
Condition requise | Valeur |
---|---|
Client minimal pris en charge |
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement] |
Serveur minimal pris en charge |
Windows Server 2003 [applications de bureau uniquement] |
En-tête |
|
IDL |
|
DLL |
|
Voir aussi