Choix et emplacement de la variable
Résolu/Fermé
Ka-El
Messages postés
260
Date d'inscription
lundi 28 novembre 2011
Statut
Membre
Dernière intervention
7 août 2020
-
Modifié par Ka-El le 7/04/2016 à 16:45
dubcek Messages postés 18755 Date d'inscription lundi 15 janvier 2007 Statut Contributeur Dernière intervention 14 novembre 2024 - 8 avril 2016 à 09:26
dubcek Messages postés 18755 Date d'inscription lundi 15 janvier 2007 Statut Contributeur Dernière intervention 14 novembre 2024 - 8 avril 2016 à 09:26
A voir également:
- Choix et emplacement de la variable
- Liste déroulante de choix excel - Guide
- Emplacement fichier host - Guide
- Impossible de créer le fichier de travail. vérifiez la variable d'environnement temp ✓ - Forum Word
- Votre envoi est réexpédié à la demande du destinataire vers l'adresse de son choix. - Forum Réseaux sociaux
1 réponse
Ka-El
Messages postés
260
Date d'inscription
lundi 28 novembre 2011
Statut
Membre
Dernière intervention
7 août 2020
7 avril 2016 à 17:54
7 avril 2016 à 17:54
je pensais avoir trouver la solution en tapant ceci:
if %choix%==1 set rep=Z:\TOTO\RCV & goto TOTORCV
Mais quand le script arrive sur "TOTORCV" :
:TOTORCV
@rem --- Déplacement des fichiers dans le répertoire d'envoi ---
for /f %%b in ('dir %rep% /A /B /O:GEN') do (
set fic=%%b
for /F "delims=. tokens=5" %%c in ('echo %%b') do set appli=%%c
move %rep%\*!appli! %rep2%\!fic!
Il m'ajoute un blanc entre "Z:\TOTO\RCV" et "\*EXT" :
move Z:\TOTO\RCV \*EXT \TOTO\reprise\reprise_fic
Quelqu'un sait pourquoi je me retrouve avec cet espace ?
if %choix%==1 set rep=Z:\TOTO\RCV & goto TOTORCV
Mais quand le script arrive sur "TOTORCV" :
:TOTORCV
@rem --- Déplacement des fichiers dans le répertoire d'envoi ---
for /f %%b in ('dir %rep% /A /B /O:GEN') do (
set fic=%%b
for /F "delims=. tokens=5" %%c in ('echo %%b') do set appli=%%c
move %rep%\*!appli! %rep2%\!fic!
Il m'ajoute un blanc entre "Z:\TOTO\RCV" et "\*EXT" :
move Z:\TOTO\RCV \*EXT \TOTO\reprise\reprise_fic
Quelqu'un sait pourquoi je me retrouve avec cet espace ?
8 avril 2016 à 08:55
pas d'espace avant &
ou utiliser des ()
8 avril 2016 à 09:09
Merci beaucoup Dubcek
Bonne journée ;-)
8 avril 2016 à 09:26