Forum de discussion
Forum « Programmation ASP » (archives)
Re: Listing d'un dossier > affichage
Envoyé: 1er octobre 2004, 9h27 par oXoiD
set fs = CreateObject("Scripting.FileSystemObject")
nRep = "Répertoire Racine (Roots)"
set MonRep = fs.GetFolder(nRep)
set ColRep = MonRep.SubFolders
for each folderItem in ColRep
Epure = Split(folderItem.path, nRep, -1, 1)
Response.Write "Répertoire: " & Epure(1) & "<br>"
set MesFichiers = fs.GetFolder(folderItem.path)
set ColFiles = MesFichiers.Files
for each FilesItem in ColFiles
Epure = Split(FilesItem.path, folderItem.path, -1, 1)
Response.Write "- Fichier: " & Epure(1) & "<br>"
next
next
set MesFichiers = nothing
set ColFiles = nothing
set ColRep = nothing
set MonRep = nothing
set fs = nothing
=====================================
Il n'y a donc que le :
nRep = "Répertoire Racine (Roots)"
a changé ? on remplace Répertoire Racine par c:/transfert/ (exemple)
c'est ca ?
merci
Réponses
|