|  |
 |
Fso ile klasördeki resimleri listelemek |
 |
|
 |
 |
11/27/2008 9:31:29 AM Ekleyen: Kubilay Erkeç
Okunma: 255 |
Klasördeki resimleri listelemeyi saglayan kodudur.
<% 'www.aspforever.com strListelenecekKlasor = "aspforever" Set ObjFSO=Server.CreateObject("Scripting.FileSystemObject") Set strDosyalar=ObjFSO.GetFolder(Server.MapPath(strListelenecekKlasor)) RSayisi = strDosyalar.Files.Count - 1 response.write ""&RSayisi&"<hr>" if RSayisi > "0" then For each strBulunanDosya in strDosyalar.files if right(strBulunanDosya.Name,"3") = "gif" OR right(strBulunanDosya.Name,"3") = "GIF" OR right(strBulunanDosya.Name,"3") = "JPG" OR right(strBulunanDosya.Name,"3") = "jpg" OR right(strBulunanDosya.Name,"4") = "jpeg" OR right(strBulunanDosya.Name,"4") = "JPEG" OR right(strBulunanDosya.Name,"3") = "png" OR right(strBulunanDosya.Name,"3") = "PNG" OR right(strBulunanDosya.Name,"3") = "BMP" OR right(strBulunanDosya.Name,"3") = "bmp" THEN Response.Write strBulunanDosya.Name & " ( " & strBulunanDosya.size & " Byte )<br>" Response.Write "<img src='"&strListelenecekKlasor&"/"&strBulunanDosya.Name&"'>" end if Next end if %>
|
|
 |
 |
|
|
 |
|