Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2629 connectés 

  FORUM HardWare.fr
  Programmation
  Shell/Batch

  [windows] dir avec le chemin total des fichiers

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

[windows] dir avec le chemin total des fichiers

n°1509893
trueslash
(╯°□°)╯︵ MMM
Posté le 02-02-2007 à 04:26:21  profilanswer
 

Bonjour :o
 
je cherche à faire un truc assez simple sous Windows XP: je veux générer un fichier text de ce format:
 


C:/datadir/data1/data1.cap
C:/datadir/data1/data2.cap
C:/datadir/data1/data3.cap
C:/datadir/data1/data4.cap
C:/datadir/data1/data5.cap
C:/datadir/data1/data6.cap


 
jusqu'à maintenant, j'arrive à faire ça:
 


cd C:/datadir/data1
dir /b >> dir.txt


 
ce qui me donne :
 


data1.cap
data2.cap
data3.cap
data4.cap
data5.cap
data6.cap


 
comment faire pour avoir le repertoire en plus ?

mood
Publicité
Posté le 02-02-2007 à 04:26:21  profilanswer
 

n°1509901
olivthill
Posté le 02-02-2007 à 08:38:39  profilanswer
 

Bonjour,
 
Faire un petit script en VBS :

Set fso = CreateObject("Scripting.FileSystemObject" )
Set f = fso.GetFolder("C:/datadir/data1" )
Set fc = f.Files
For Each f1 in fc
   Wscript.Echo f1.path
Next


Mettre ces lignes dans un fichier, nommé par exemple listfic.vbs
Lancer ce fichier en cliquant dessus depuis l'Explorer, ou bien depuis la ligne de commande , taper

cscript //nologo listfic.vbs >lisfic.txt

VBS existe sur tous les PC depuis Windows 98 (pour plus d'infos sur VBS, voir http://www.microsoft.com/technet/s [...] fault.mspx ).

n°1510021
pascale73
Posté le 02-02-2007 à 13:08:12  profilanswer
 

Bonjour
 
et simplement :
for /f %a in ('dir /b') do echo %~fa>>liste.txt

n°1510041
vttman2
Je suis Open ...
Posté le 02-02-2007 à 13:45:21  profilanswer
 

J'm bien le "et simplement" ... ;-)
 
Mais ça a l'air de marcher en tout cas !


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  Shell/Batch

  [windows] dir avec le chemin total des fichiers

 

Sujets relatifs
Oracle 10g R2 - Windows 2003 server - Active Directoryanalyser le type d'un fichier en c sous windows
[VB/VBA/VBS] Ajouter un réseau sans fil sous Windows XPIE freeze avec Windows Media Player
Récuperer le chemin d'une image d'une PictureBoxApplication Windows et bdd MySQL sur internet = SOAP ?
Créer un projet WindowsConvertir un chemin windows en chemin linux
Plus de sujets relatifs à : [windows] dir avec le chemin total des fichiers


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR