1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| Dim Document
Dim Temp
Temp=0
'Document=ABDAVOMU
'InputBox("Entrez le nom du document (nom+extension) ")
Dim stFichier 'Nom du Fichier a tester
Dim oFSO,oFl
Set oFSO = CreateObject("Scripting.FileSystemObject")
stFichier = "\\SPBEAPP\ABDAV"
stFichier2 = "\\SPBEAPP\\ABDENC"
stFichier3 = "\\SPBEAPP\\\ABDU"
stFichier4 = "\\SPBEAPP\\\DASNS"
stFichier5 = "\\SPBEAPP\\DASI"
If oFSO.FileExists(stFichier) Then
Set oFl = oFSO.GetFile(stFichier)
MsgBox " " & vbCrlf & _
"Name : " & oFl.Name & vbCrlf & _
" " & vbCrlf & _
"DateLastModified : " & oFl.DateLastModified
Set oFl = oFSO.GetFile(stFichier2)
MsgBox " " & vbCrlf & _
"Name : " & oFl.Name & vbCrlf & _
" " & vbCrlf & _
"DateLastModified : " & oFl.DateLastModified
Set oFl = oFSO.GetFile(stFichier3)
MsgBox " " & vbCrlf & _
"Name : " & oFl.Name & vbCrlf & _
" " & vbCrlf & _
"DateLastModified : " & oFl.DateLastModified
Set oFl = oFSO.GetFile(stFichier4)
MsgBox " " & vbCrlf & _
"Name : " & oFl.Name & vbCrlf & _
" " & vbCrlf & _
"DateLastModified : " & oFl.DateLastModified
Set oFl = oFSO.GetFile(stFichier5)
MsgBox " " & vbCrlf & _
"Name : " & oFl.Name & vbCrlf & _
" " & vbCrlf & _
"DateLastModified : " & oFl.DateLastModified
ELSE
Msgbox "Pas de fichier gevonden"
End if |
Partager