GetSaveAsFilename : test fichier existant
Fermé
botanucus
Messages postés
4
Date d'inscription
jeudi 12 octobre 2017
Statut
Membre
Dernière intervention
15 janvier 2020
-
Modifié le 14 janv. 2020 à 21:23
botanucus Messages postés 4 Date d'inscription jeudi 12 octobre 2017 Statut Membre Dernière intervention 15 janvier 2020 - 15 janv. 2020 à 17:18
botanucus Messages postés 4 Date d'inscription jeudi 12 octobre 2017 Statut Membre Dernière intervention 15 janvier 2020 - 15 janv. 2020 à 17:18
2 réponses
Patrice33740
Messages postés
8556
Date d'inscription
dimanche 13 juin 2010
Statut
Membre
Dernière intervention
2 mars 2023
1 778
14 janv. 2020 à 22:42
14 janv. 2020 à 22:42
Utiliser la commande Dir(chemin)
botanucus
Messages postés
4
Date d'inscription
jeudi 12 octobre 2017
Statut
Membre
Dernière intervention
15 janvier 2020
15 janv. 2020 à 17:18
15 janv. 2020 à 17:18
Merci Patrice. C'est tout bon ! Pour info, voici ce que j'ai fait :
- Dans mon Sub :
- Ma fonction :
- Dans mon Sub :
If Not Fichier_Existe((FichierSequence)) Then
If MsgBox("Ce fichier existe déjà. Voulez-vous le remplacer ?", vbYesNo) = vbNo Then
Exit Sub
End If
End If
- Ma fonction :
Function Fichier_Existe(F As String) As Boolean
Dim D As String
If F <> "" Then
F = Mid(F, InStrRev(F, "\") + 1)
D = Dir("*.seq")
Do While D <> ""
If D = F Then
Exit Do
Else
D = Dir()
End If
Loop
End If
Fichier_Existe = (D <> F)
End Function