Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
File Existing
#1
Im working with that DLL Register tut but im trying to make it check to see if it already exist and if not register the provided files in a specific folder.

i want it to do is like Check the C:\WINDOWS\System32\name.dll but idk how :\

heres my function tho..

Code:
Function SystemFileExist(ByVal SystemFileName As String) As Boolean
    If Dir("C:" & "\" & SystemFileName) = "" Then
        SystemFileExist = False
    Else
        SystemFileExist = True
    End If
End Function
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)