Jump to content
Fórum Script Brasil
  • 0

File System Object


EDSONET

Question

Seguinte, preciso listar uma uma pagina LINKS de imagens hospedadas dentro um diretório X.

Ex:

No meu site existe um diretório chamado imagens.

Dentro de imagens existe varios arquivos em jpg.

Gostria que listar todos os arquivos presentes naquele diretorio em forma de link, onde eu clico e aparece aquela imagem.

alguém tem ideia de como fazer isso?

Abrigado!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Olha ai um exemplo:

<%
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
Set principal = FSO.GetFolder("c:\intranet") ' coloque a pasta principal
Set arquivos = principal.Files


dim nome
nome=array()
For each arq in arquivos
redim preserve nome(Ubound(nome)+1)
nome(Ubound(nome)) = arq.name
next

CAMINHO=MID(PRINCIPAL,3,LEN(PRINCIPAL)-2)

for x = 0 to Ubound(nome)  
if FSO.GetExtensionName(nome(x)) = "jpg" then
   response.write "<a href="& CAMINHO &"\"& nome(x)& ">"& nome(x) &"</a><br>"
end if
next

%>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...