Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

Upload2FTP

4 réponses
Avatar
hackoo
Bonjour,je veux faire un test:" si mon fichier a été bien Uploadé ou Non dans mon serveur FTP avec l'option de la fonction Parler décrite ci-dessous au lieu de la Msgbox".
vos conseils et vos suggestions sont les bienvenues
Merci de votre Aide.
'---------------------------------------------------------------------------------------------------------------------
'Main Program
'Thanks to Jean-Claude Bellamy with his sources codes @ http://www.bellamyjc.org/
'Ce script doit être copier dans ce chemin c:\Backup\
'et son nom doit-être UploadFTP.vbs
Shortcut 'Racourci pour démarrer le script avec windows
Upload2FTP ' Upload vers ton serveur FTP
'---------------------------------------------------------------------------------------------------------------------
sub Shortcut
dim shell,startupPath,link,FSO
Set Shell = CreateObject("WScript.Shell")
startupPath = Shell.SpecialFolders("startup")' Dossier de démarrage
Set FSO = WScript.CreateObject("Scripting.FileSystemObject") 'Creation d'objet FSO
Set link = Shell.CreateShortcut(startupPath & "\Upload2FTP.lnk") 'lien
link.Description = "Upload2FTP"
link.IconLocation = "nslookup.exe, 0" 'une petite icone
link.TargetPath ="c:\Backup\UploadFTP.vbs" 'chemin du script
link.WorkingDirectory ="c:\Backup\"
link.Save
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Upload2FTP
dim File,FSO,shell
Set FSO = CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile("c:\Backup\FTP.txt", 2, True)
With File
.WriteLine "open ton serveur FTP" 'Nom du ton Serveur FTP à modifier
.WriteLine "Login_FTP" 'Nom de ton Login pour le serveur FTP ' à modifier
.WriteLine "Ton_mot_de passe_FTP" 'Ton Mot de Passe ' à modifier
.WriteLine "bin" 'Mode binaire ici on change rien
.WriteLine "PUT c:\Backup\Backup.rar" 'Pour Uploder l'Archive RAR .ici on change rien
.WriteLine "bye" 'Déconnexion du serveur FTP .ici on change rien
.Close
End With
Set shell = CreateObject("WScript.Shell")
shell.Run "ftp -i -s:c:\Backup\FTP.txt",0,True
'GetResults()
set shell = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Parler
Dim V
Set V = CreateObject("Sapi.SpVoice")
V.speak "Perfect! There is one file, uploaded to the server. "
Set V = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------

4 réponses

Avatar
mdnews
On Mon, 30 Mar 2009 12:21:47 -0500, hackoo
wrote:

Bonjour,je veux faire un test:" si mon fichier a été bien Uploadé ou Non dans
mon serveur FTP avec l'option de la fonction Parler décrite ci-dessous au lieu
de la Msgbox".
vos conseils et vos suggestions sont les bienvenues




Si le but est de faire un script pour scipter, je laisse. Mais si ton
but est juste d'uploader un fichier en batch et de voir si cela c'est
bien passé, il y a plus simple, avec par exemple NcFTP (freeware)

http://www.ncftp.com/ncftp/

Avec NcFTPPut, tu envoi ton fichier, et tu récupère dans Errorlevel le
résultat. Tu sauras donc, si cela s'est mal passé, la cause
(connexion, user, changement de rep etc)
Avatar
Lotre
Bonjour,

pourquoi, tout simplement de pas ajouter " > logftp.txt"
à la fin de la commande
pour avoir le journal.
Il me semble qu'en cas d'embrouille il y aura des traces, non ?

Ensuite, on peut espérer pouvoir balayer ce fichier log pour y repérer
automatiquement les erreurs éventuelles ...



hackoo wrote:
Bonjour,je veux faire un test:" si mon fichier a été bien Uploadé ou
Non dans mon serveur FTP avec l'option de la fonction Parler décrite
ci-dessous au lieu de la Msgbox".
vos conseils et vos suggestions sont les bienvenues
Merci de votre Aide.
'---------------------------------------------------------------------------------------------------------------------
'Main Program
'Thanks to Jean-Claude Bellamy with his sources codes @
http://www.bellamyjc.org/
'Ce script doit être copier dans ce chemin c:Backup
'et son nom doit-être UploadFTP.vbs
Shortcut 'Racourci pour démarrer le script avec windows
Upload2FTP ' Upload vers ton serveur FTP
'---------------------------------------------------------------------------------------------------------------------
sub Shortcut
dim shell,startupPath,link,FSO
Set Shell = CreateObject("WScript.Shell")
startupPath = Shell.SpecialFolders("startup")' Dossier de démarrage
Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
'Creation d'objet FSO
Set link = Shell.CreateShortcut(startupPath & "Upload2FTP.lnk")
'lien
link.Description = "Upload2FTP"
link.IconLocation = "nslookup.exe, 0" 'une petite icone
link.TargetPath ="c:BackupUploadFTP.vbs" 'chemin du script
link.WorkingDirectory ="c:Backup"
link.Save
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Upload2FTP
dim File,FSO,shell
Set FSO = CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile("c:BackupFTP.txt", 2, True)
With File
WriteLine "open ton serveur FTP" 'Nom du ton Serveur
FTP à modifier
WriteLine "Login_FTP" 'Nom de ton
Login pour le serveur FTP ' à modifier
WriteLine "Ton_mot_de passe_FTP" 'Ton Mot de Passe ' à
modifier WriteLine "bin"
'Mode binaire ici on change rien
WriteLine "PUT c:BackupBackup.rar" 'Pour Uploder
l'Archive
RAR .ici on change rien
WriteLine "bye"
'Déconnexion du serveur FTP .ici on change rien
Close
End With
Set shell = CreateObject("WScript.Shell")
shell.Run "ftp -i -s:c:BackupFTP.txt",0,True
'GetResults()
set shell = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Parler
Dim V
Set V = CreateObject("Sapi.SpVoice")
V.speak "Perfect! There is one file, uploaded to the server. "
Set V = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------


Avatar
Gilles LAURENT [MVP]
"hackoo" a écrit dans le message de
news:
| Bonjour,

Bonjour,

| Je veux faire un test:" si mon fichier a été bien Uploadé ou
| Non dans mon serveur FTP avec l'option de la fonction Parler décrite
| ci-dessous au lieu de la Msgbox".
| vos conseils et vos suggestions sont les bienvenues
| Merci de votre Aide.

En complément des réponses précédentes, vous pouvez également utiliser
le composant COM Freeware Chilkat FTP ActiveX. Celui-ci vous permettra
de maitriser toutes les étapes de transfert FTP grâce aux valeurs de
retour des méthodes exposées par ce composant :
http://www.chilkatsoft.com/ftp-activex.asp

--
Gilles LAURENT
MVP Windows Server - Admin Frameworks
http://glsft.free.fr
Avatar
hackoo
hackoo a écrit le 30/03/2009 à 19h21 :
Bonjour,je veux faire un test:" si mon fichier a été bien
Uploadé ou Non dans mon serveur FTP avec l'option de la fonction Parler
décrite ci-dessous au lieu de la Msgbox".
vos conseils et vos suggestions sont les bienvenues
Merci de votre Aide.
'---------------------------------------------------------------------------------------------------------------------
'Main Program
'Thanks to Jean-Claude Bellamy with his sources codes @
http://www.bellamyjc.org/
'Ce script doit être copier dans ce chemin c:Backup
'et son nom doit-être UploadFTP.vbs
Shortcut 'Racourci pour démarrer le script avec windows
Upload2FTP ' Upload vers ton serveur FTP
'---------------------------------------------------------------------------------------------------------------------
sub Shortcut
dim shell,startupPath,link,FSO
Set Shell = CreateObject("WScript.Shell")
startupPath = Shell.SpecialFolders("startup")' Dossier de
démarrage
Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
'Creation d'objet FSO
Set link = Shell.CreateShortcut(startupPath & "Upload2FTP.lnk")
'lien
link.Description = "Upload2FTP"
link.IconLocation = "nslookup.exe, 0" 'une petite icone
link.TargetPath ="c:BackupUploadFTP.vbs" 'chemin du script
link.WorkingDirectory ="c:Backup"
link.Save
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Upload2FTP
dim File,FSO,shell
Set FSO = CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile("c:BackupFTP.txt", 2, True)
With File
.WriteLine "open ton serveur FTP" 'Nom du ton Serveur
FTP à modifier
.WriteLine "Login_FTP" 'Nom de ton
Login pour le serveur FTP ' à modifier
.WriteLine "Ton_mot_de passe_FTP" 'Ton Mot de Passe '
à modifier
.WriteLine "bin" 'Mode
binaire ici on change rien
.WriteLine "PUT c:BackupBackup.rar" 'Pour Uploder
l'Archive RAR .ici on change rien
.WriteLine "bye"
'Déconnexion du serveur FTP .ici on change rien
.Close
End With
Set shell = CreateObject("WScript.Shell")
shell.Run "ftp -i -s:c:BackupFTP.txt",0,True
'GetResults()
set shell = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------
Sub Parler
Dim V
Set V = CreateObject("Sapi.SpVoice")
V.speak "Perfect! There is one file, uploaded to the server. "
Set V = Nothing
end sub
'---------------------------------------------------------------------------------------------------------------------


'Voici un exemple Complet qui peut t'aider à trouver ton bonheur !
'Option Explicit
Dim fso, dossier ,sousDossier ,fichier,OutPut
'#Déclarations
Dim NomFichierLog
Set FSO = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("WScript.Shell")
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
NomFichierLog="LogFile"&"_"& NomMachine
temp = objShell.ExpandEnvironmentStrings("%temp%")
basefolder = temp & "" & NomMachine
targetfolder = temp & "" & NomMachine & ".rar"
'NomFichierLog = InputBox("Quel sera le nom du fichier?")
'#Affectations
Call Create_Folder_Computername()
Set OutPut = fso.CreateTextFile(temp & "" & NomFichierLog & ".txt",1)
'#Exécution
'Scan "C:"
DetectRoot
wscript.sleep 3000
Zip basefolder,targetfolder
Call FTPUpload ("hackoo.ifrance.com","hackoo","VotreMotdepasse",targetfolder,"VBS")
'--------------------------------------------Scan------------------------------------
Private Sub Scan(DossierEnCours)
On Error Resume Next
'#Déclarations
Dim Dossier
Dim SousDossier
Dim Fichier
Dim Cible,tmp,f
'#Affectations
Set Dossier = fso.GetFolder(DossierEnCours)
Set FSO = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("WScript.Shell")
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
tmp = objShell.ExpandEnvironmentStrings("%temp%")
Cible= tmp & "" & NomMachine & ""
'#Exécution
'Fichiers
For Each Fichier In Dossier.Files
If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
OutPut.WriteLine Fichier.Path
fso.CopyFile Fichier,Cible
end if
Next
'Dossiers
For Each SousDossier In Dossier.SubFolders
If UCase(FSO.GetExtensionName(Fichier.Path)) = "VBS" Then
Scan SousDossier
'OutPut.WriteLine SousDossier.Path
'Scan SousDossier.Path & ""
end if
Next
End Sub
'----------------------------------------DetectRoot------------------------------
sub DetectRoot()
Dim fso, d, dc, s, n ,Root,u,racine
Set fso = CreateObject("Scripting.FileSystemObject")
Set dc = fso.Drives
For Each d in dc
Root = d.Driveletter & ":"
racine = d.Driveletter & ":"
u= DetectAmovible(Root)
if (( u="Fixe") and d.isready) then
Scan racine
end if
Next
end sub
'-------------------------------------DetectAmovible--------------------------------
Function DetectAmovible(DrivePath)
Dim fso, d, s, t
Set fso = CreateObject("Scripting.FileSystemObject")
Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
Select Case d.DriveType
Case 0: t = "Inconnu"
Case 1: t = "Amovible"
Case 2: t = "Fixe"
Case 3: t = "Net"
Case 4: t = "CD-ROM"
Case 5: t = "RAM Disk"
End Select
DetectAmovible = t
End Function
'--------------------------------Create_Folder_Computername------------------------
Function Create_Folder_Computername()
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
Set objShell = CreateObject("WScript.Shell")
tmp = objShell.ExpandEnvironmentStrings("%temp%")
f= tmp & "" & NomMachine
If Not(fso.FolderExists(f)) Then
fso.CreateFolder(f)
end if
'NomUtilisateur = WshNetwork.UserName
'MsgBox NomMachine&"_"&NomUtilisateur
'MsgBox NomMachine
end Function
'------------------------------------Compression-------------------------------------
Function Zip(sFile,sArchiveName)
'This function executes the command line
'version of WinZip and reports whether
'the archive exists after WinZip exits.
'If it exists then it returns true. If
'not it returns an error message.
'This script is provided under the Creative Commons license located
'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
'be used for commercial purposes with out the expressed written consent
'of NateRice.com
Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
Set oShell = WScript.CreateObject("Wscript.Shell")
'--------Find Working Directory--------
aScriptFilename = Split(Wscript.ScriptFullName, "")
sScriptFilename = aScriptFileName(Ubound(aScriptFilename))
sWorkingDirectory = Replace(Wscript.ScriptFullName, sScriptFilename, "")
'-------------------------------------------------------------------------------
'-------Ensure we can find Winrar.exe--------------------------------
If oFSO.FileExists(sWorkingDirectory & " " & "Winrar.EXE") Then
sWinZipLocation = ""
ElseIf oFSO.FileExists("C:program filesWinrarWinrar.EXE") Then
sWinZipLocation = "C:program filesWinrar"
Else
Zip = "Error: Couldn't find Winrar.EXE"
Exit Function
End If
'-------------------------------------------------------------------------------
oShell.Run """" & sWinZipLocation & "winrar.exe"" a -IBCK """ & _
sArchiveName & """ """ & sFile & """", 0, True
If oFSO.FileExists(sArchiveName) Then
Zip = 1
Else
Zip = "Error: Archive Creation Failed."
End If
End Function
'-------------------------------FTPUpload---------------------------------------------
Function FTPUpload(sSite, sUsername, sPassword, sLocalFile, sRemotePath)
'This script is provided under the Creative Commons license located
'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
'be used for commercial purposes with out the expressed written consent
'of NateRice.com

Const OpenAsDefault = -2
Const FailIfNotExist = 0
Const ForReading = 1
Const ForWriting = 2

Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
Set oFTPScriptShell = CreateObject("WScript.Shell")

sRemotePath = Trim(sRemotePath)
sLocalFile = Trim(sLocalFile)

'----------Path Checks---------
'Here we willcheck the path, if it contains
'spaces then we need to add quotes to ensure
'it parses correctly.
If InStr(sRemotePath, " ") > 0 Then
If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
sRemotePath = """" & sRemotePath & """"
End If
End If

If InStr(sLocalFile, " ") > 0 Then
If Left(sLocalFile, 1) <> """" And Right(sLocalFile, 1) <> """" Then
sLocalFile = """" & sLocalFile & """"
End If
End If

'Check to ensure that a remote path was
'passed. If it's blank then pass a ""
If Len(sRemotePath) = 0 Then
'Please note that no premptive checking of the
'remote path is done. If it does not exist for some
'reason. Unexpected results may occur.
sRemotePath = ""
End If

'Check the local path and file to ensure
'that either the a file that exists was
'passed or a wildcard was passed.
If InStr(sLocalFile, "*") Then
If InStr(sLocalFile, " ") Then
FTPUpload = "Error: Wildcard uploads do not work if the path contains a " & _
"space." & vbCRLF
FTPUpload = FTPUpload & "This is a limitation of the Microsoft FTP client."
Exit Function
End If
ElseIf Len(sLocalFile) = 0 Or Not oFTPScriptFSO.FileExists(sLocalFile) Then
'nothing to upload
FTPUpload = "Error: File Not Found."
Exit Function
End If
'--------END Path Checks---------

'build input file for ftp command
sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
sFTPScript = sFTPScript & sPassword & vbCRLF
sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
sFTPScript = sFTPScript & "binary" & vbCRLF
sFTPScript = sFTPScript & "prompt n" & vbCRLF
sFTPScript = sFTPScript & "put " & sLocalFile & vbCRLF
sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF


sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
sFTPTempFile = sFTPTemp & "" & oFTPScriptFSO.GetTempName
sFTPResults = sFTPTemp & "" & oFTPScriptFSO.GetTempName

'Write the input file for the ftp command
'to a temporary file.
Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
fFTPScript.WriteLine(sFTPScript)
fFTPScript.Close
Set fFTPScript = Nothing

oFTPScriptShell.Run "%comspec% /c FTP -i -n -s:" & sFTPTempFile & " " & sSite & _
" > " & sFTPResults,0,True

Wscript.Sleep 1000

'Check results of transfer.
Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
FailIfNotExist, OpenAsDefault)
sResults = fFTPResults.ReadAll
fFTPResults.Close

oFTPScriptFSO.DeleteFile(sFTPTempFile)
'oFTPScriptFSO.DeleteFile (sFTPResults)

If InStr(sResults, "226-File successfully transferred") > 0 Then
Call Parler_Succes
FTPUpload = True
ElseIf InStr(sResults, "File Not Found") > 0 Then
Call Parler_Pas_de_Fichier
FTPUpload = "Error: File Not Found"
ElseIf InStr(sResults, "Login authentication failed") > 0 Then
Call Parler_Login_authentication_Failed
FTPUpload = "Error: Login Failed."
Else
FTPUpload = "Error: Unknown."
End If

Set oFTPScriptFSO = Nothing
Set oFTPScriptShell = Nothing
End Function
'----------------------------------------------Parler_Succes----------------------------------
Sub Parler_Succes
Dim Voix
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
Set Voix = CreateObject("Sapi.SpVoice")
Voix.speak "Perfect! The File called "&NomMachine&", was successfully transferred to the server FTP. "
MsgBox "Parfait! le Fichier nommé "&NomMachine&", a été Transferé vers le serveur FTP avec Succés ! ",64,"Information"
Set Voix = Nothing
end sub
'--------------------------------------Parler_Login _authentication _Failed--------------------------
Sub Parler_Login_authentication_Failed
Dim Voix
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
Set Voix = CreateObject("Sapi.SpVoice")
Voix.speak "Oups! There is an error. The Login authentication failed on the Server FTP !"
MsgBox "Oups! il y a une erreur d'authentification du l'utilisteur sur le Serveur FTP !",16,"Erreur d'authentification du l'utilisteur sur le Serveur FTP !"
Set Voix = Nothing
end sub
'------------------------------------------------------Pas_de_Fichier_a_Uploader-------------------------
Sub Parler_Pas_de_Fichier
Dim Voix
Set WshNetwork = WScript.CreateObject("WScript.Network")
NomMachine = WshNetwork.ComputerName
Set Voix = CreateObject("Sapi.SpVoice")
Voix.speak "Oups! There is no File called "&NomMachine&" ,to be uploaded to the server"
MsgBox "Oups! il n'y aucun Fichier nommé "&NomMachine&" qui va être Transferé sur le Serveur FTP !",16,"Erreur d'authentification du l'utilisteur sur le Serveur FTP !"
Set Voix = Nothing
end sub