Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

berlingonic

Re: re

Merci pour votre réponse
Bonsoir,
Je viens de regarder et je n'ai encore rien trouvé, j'ai essayé beaucoup de chose mais toujours le même problème, télécharge tout le FTP mais pas uniquement le dossier video.
Je dois télécharger les images du dossier : video/20181017/images/
Sinon tout fonctionne bien seulement qu'il ne charge pas que le dossier demandé.
Voici le .bat et le .txt
Si vous pouvez m'aider SVP.

thank you for your reply
Good evening,
I just watched and I have not found anything yet, I tried a lot of things but still the same problem, download all the FTP but not only the video file.
I have to download the images of the file: video/20181017/images/
Otherwise everything works well only that it does not load only the requested file.
Here is the .bat and the .txt
If you can help me please.

Fichier .bat.
set hoffset=%time:~0,2%
if "%time:~0,1%"==" " set hoffset=0%time:~1,1%
set ddmmaa_hhmmss=%date:~0,2%%date:~3,2%%date:~6,4%_%hoffset%%time:~3,2%%time:~6,2%
set backupdirectory=bck_%ddmmaa_hhmmss%
md %backupdirectory%
cd %backupdirectory%
"c:\program files\winscp\winscp.com" /script:"c:\Messauvegardes\backupscript.txt"
cd..
"c:\program files\7-Zip\7z.exe" a %backupdirectory%.zip %backupdirectory%
rd /S /Q %backupdirectory%

fichier .txt
option batch on
option confirm off
open ni******:*********@ftp.************
option transfer binary
cd../video/20181017/images
mget *.*
close
exit
rb7586123

re

Hi @berlingonic2,

** WARNING **
You shared your password on this forum!
For our security, please change it as soon as possible.

In your script, make sure to change the folder with cd command
and also check the syntax of your get command.
cd /server/folder/path
get filename_on_server "full_filepath_on_your_disk"

Look here also:
https://winscp.net/eng/docs/scripting#example

rb
berlingonic2

Problème avec un script. Problem with a script

Bonjour, je suis belge francophone et je traduit via google.
Concerne le script : Comment sauvegarder un site FTP automatiquement avec WinSCP
Le script fonctionne avec le répertoire get / mais il n’efface rien.
Si je met le bon répertoire get/video il ne fonctionne pas du tout.
Pouvez-vous m'aider SVP car aucune connaissance dans ce domaine.

Hello, I am Belgian speaking and I translate via google.
Regarding the script: How to backup an FTP site automatically with WinSCP
The script works with the get / directory but it does not delete anything.
If I put the correct get / video directory it does not work at all.
Can you help me please because no knowledge in this area.

voici que que donne le script:
# Début du script WinSCP
# Réponse automatique pendant l’exécution du script
# On sort en cas d’erreur
option batch on
option confirm off
# On se connecte à notre serveur FTP
# open login:password@nomduserveur.com
open nicol1044281:A2J9U8R9q9n5@ftp.nicolask.be
# On active le mode de transfert binaire
option transfer binary
# On télécharge l’arborescence de notre choix
# Qui sera stockée dans le répertoire actif définit dans le fichier BATCH
# Ici je télécharge le répertoire /site/images de mon serveur
get /video
# On se déconnecte
close
# Et on sort de WinSCP pour retourner dans le batch principal
exit

Merci.