forked from gper/DirectoryWatcher
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
422 B
15 lines
422 B
namespace BitPlus.IO.Directory.Watcher; |
|
|
|
public sealed class DirectoryFileEventArgs : EventArgs |
|
{ |
|
public string FullPath { get; } |
|
public EventMode Mode { get; } |
|
public string? OldFullPath { get; } |
|
|
|
public DirectoryFileEventArgs(string fullPath, EventMode mode, string? oldFullPath = null) |
|
{ |
|
this.FullPath = fullPath; |
|
this.Mode = mode; |
|
this.OldFullPath = oldFullPath; |
|
} |
|
}
|
|
|