What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Check whether file exists

Check whether file exists
Author: Message:
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: Check whether file exists
I made a little example:

code:
Public Class Form1

    Private File As String = "C:\DataFile.dat"
    Private mywatcher As New IO.FileSystemWatcher 'Create new instance of FileSystemWatcher

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        'Check the first time if the File Exists
        If System.IO.File.Exists(File) Then
            mywatcher.Path = File 'Specify Path to File or Directory. Which ever you need
            mywatcher.IncludeSubdirectories = False
            mywatcher.NotifyFilter = IO.NotifyFilters.DirectoryName Or IO.NotifyFilters.FileName Or IO.NotifyFilters.LastWrite Or IO.NotifyFilters.Security

            AddHandler mywatcher.Deleted, AddressOf OnDeleted  'Use intellisense to see what others are open to you

            mywatcher.EnableRaisingEvents = True     'Start the process
        End If
    End Sub


    Private Sub OnDeleted(ByVal sender As Object, ByVal e As System.IO.FileSystemEventArgs)
        If e.FullPath = File And e.ChangeType = IO.WatcherChangeTypes.Deleted Then
            'FILE HAS BEEN REMOVED!!
        End If
    End Sub

End Class



WDZ implement auto code coloring :'(
[Image: 1-0.png]
             
04-04-2007 11:32 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Check whether file exists - by ryxdp on 04-04-2007 at 07:13 AM
RE: Check whether file exists - by vikke on 04-04-2007 at 07:26 AM
RE: RE: Check whether file exists - by TheSteve on 04-04-2007 at 08:57 AM
RE: Check whether file exists - by vikke on 04-04-2007 at 09:00 AM
RE: Check whether file exists - by TheSteve on 04-04-2007 at 09:04 AM
RE: Check whether file exists - by Ezra on 04-04-2007 at 09:28 AM
RE: Check whether file exists - by vikke on 04-04-2007 at 09:39 AM
RE: Check whether file exists - by ryxdp on 04-04-2007 at 10:14 AM
RE: RE: Check whether file exists - by vikke on 04-04-2007 at 11:39 AM
RE: Check whether file exists - by Ezra on 04-04-2007 at 10:22 AM
RE: Check whether file exists - by John Anderton on 04-04-2007 at 10:39 AM
RE: Check whether file exists - by ryxdp on 04-04-2007 at 10:40 AM
RE: Check whether file exists - by Ezra on 04-04-2007 at 11:32 AM
RE: Check whether file exists - by ryxdp on 04-05-2007 at 05:40 AM
RE: Check whether file exists - by roflmao456 on 04-06-2007 at 05:34 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On