Compter les fichier d'un repertoire

fireit -  
 fleche-bleu -
Bonjour,
je voudrais, dans un shell windows, compter les fichiers d'un repertoire.
help pliz
Configuration: Windows XP
Internet Explorer 6.0

4 réponses

  1. dubcek Messages postés 18627 Date d'inscription   Statut Contributeur Dernière intervention   5 659
     
    hello
    utiliser find
    C:> dir /b
    a
    b
    c
    d
    
    C:> dir /b | find  /v /c ""
    4
    
    19