.bat, verifier présence fichier ou non
Résolu/Fermé
micromega
Messages postés
131
Date d'inscription
lundi 13 avril 2009
Statut
Membre
Dernière intervention
12 avril 2020
-
12 janv. 2011 à 14:55
micromega - 14 janv. 2011 à 08:28
micromega - 14 janv. 2011 à 08:28
A voir également:
- .bat, verifier présence fichier ou non
- Fichier bat - Guide
- Fichier rar - Guide
- Comment réduire la taille d'un fichier - Guide
- Comment ouvrir un fichier epub ? - Guide
- Fichier host - Guide
3 réponses
BeFaX
Messages postés
14245
Date d'inscription
mercredi 24 décembre 2008
Statut
Contributeur
Dernière intervention
6 août 2013
3 822
12 janv. 2011 à 15:36
12 janv. 2011 à 15:36
@echo off
if exist "c:\windows\fonts\batang.ttc" (goto exist) else (goto noexist)
exit
:exist
echo Le fichier existe bien dans le dossier Fonts
pause>nul
goto:eof
:noexist
echo Le fichier n'existe pas.
echo Installation de la police en cours ...
xcopy "font.ttc" c:\Windows\fonts\
pause>nul
if exist "c:\windows\fonts\batang.ttc" (goto exist) else (goto noexist)
exit
:exist
echo Le fichier existe bien dans le dossier Fonts
pause>nul
goto:eof
:noexist
echo Le fichier n'existe pas.
echo Installation de la police en cours ...
xcopy "font.ttc" c:\Windows\fonts\
pause>nul
dubcek
Messages postés
18758
Date d'inscription
lundi 15 janvier 2007
Statut
Contributeur
Dernière intervention
24 décembre 2024
5 623
12 janv. 2011 à 15:37
12 janv. 2011 à 15:37
hello
dans une fenêtre DOS
dans une fenêtre DOS
help if .. IF [NOT] EXIST nom_de_fichier commande