HejLadda senaste bild med fileSystemWatecher
Håller på att utveckla en windows form där jag vill ladda senast uppladdade bilden i en mapp med hjälp av fileSystemWatcher, men jag får det inte att fungera. Här är min kod:
private void StartWatching()
{
System.IO.FileSystemWatcher myWatcher = new System.IO.FileSystemWatcher();
myWatcher.Path = @"C:\Documents and Settings\jogu09\My Documents\Visual Studio 2005\Projects\test\test\pictures\";
myWatcher.Filter = "*.jpg";
myWatcher.Created += myWatcher_OnCreated;
}
private void myWatcher_OnCreate(dobject sender, FileSystemEventArgs e)
{
PictureBox1.Image = new Bitmap(e.FullPath);
}
Tack på förhand!