Differences
This shows you the differences between the selected revisions of the page.
| 2013-05-23 | 2013-05-23 | ||
| no need for symbol qualification (martin) | IsNot Nothing (martin) | ||
| Line 196: | Line 196: | ||
| End If | End If | ||
| - | If Not e.Chmod Is Nothing Then | + | If e.Chmod IsNot Nothing Then |
| If e.Chmod.Error Is Nothing Then | If e.Chmod.Error Is Nothing Then | ||
| Console.WriteLine("Permisions of {0} set to {1}", e.Chmod.FileName, e.Chmod.FilePermissions) | Console.WriteLine("Permisions of {0} set to {1}", e.Chmod.FileName, e.Chmod.FilePermissions) | ||
| Line 206: | Line 206: | ||
| End If | End If | ||
| - | If Not e.Touch Is Nothing Then | + | If e.Touch IsNot Nothing Then |
| If e.Touch.Error Is Nothing Then | If e.Touch.Error Is Nothing Then | ||
| Console.WriteLine("Timestamp of {0} set to {1}", e.Touch.FileName, e.Touch.LastWriteTime) | Console.WriteLine("Timestamp of {0} set to {1}", e.Touch.FileName, e.Touch.LastWriteTime) | ||