Skip to content

Instantly share code, notes, and snippets.

export class KittenRoutes {
static readonly listKittens = 'api/kittens/list';
static feedKitten(kittenId: any): string {
return `api/kitten/${kittenId}/feed`;
}
static adoptKitten(kittenId: any): string {
return `api/kitten/${kittenId}/feed`;
}
private void OnDirectoryChange(object s, FileSystemEventArgs a)
{
Console.Beep(1500, 200);
}
private readonly Timer _timer = new Timer(300) { AutoReset = false, Enabled = false };
// ...
_timer.Elapsed += (s, a) =>
{
Console.Beep(1500, 200);
_timer.Enabled = false;
};
_fileSystemWatcher = new FileSystemWatcher
{
Path = @"C:\My Project\Apps\Analysis",
NotifyFilter = NotifyFilters.LastWrite,
Filter = "*.*"
};
_fileSystemWatcher.EnableRaisingEvents = true;
_fileSystemWatcher.Changed += OnDirectoryChange;