20 references to FullPath
dotnet-watch (14)
FileWatcher\EventBasedDirectoryWatcher.cs (14)
61
Logger?.Invoke($"[FW] Renamed '{e.OldFullPath}' to '{e.
FullPath
}'.");
63
if (Directory.Exists(e.
FullPath
))
65
foreach (var newLocation in Directory.EnumerateFiles(e.
FullPath
, "*", SearchOption.AllDirectories))
68
var oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.
FullPath
.Length + 1));
76
NotifyChange(e.
FullPath
, ChangeKind.Add);
87
var isDir = Directory.Exists(e.
FullPath
);
89
Logger?.Invoke($"[FW] Deleted '{e.
FullPath
}'.");
97
NotifyChange(e.
FullPath
, ChangeKind.Delete);
107
var isDir = Directory.Exists(e.
FullPath
);
109
Logger?.Invoke($"[FW] Updated '{e.
FullPath
}'.");
117
NotifyChange(e.
FullPath
, ChangeKind.Update);
127
var isDir = Directory.Exists(e.
FullPath
);
129
Logger?.Invoke($"[FW] Added '{e.
FullPath
}'.");
136
NotifyChange(e.
FullPath
, ChangeKind.Add);
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\FileWatching\SimpleFileChangeWatcher.cs (1)
83
FileChanged?.Invoke(this, e.
FullPath
);
Microsoft.Extensions.FileProviders.Physical (5)
PhysicalFilesWatcher.cs (5)
281
OnFileSystemEntryChange(e.
FullPath
);
283
if (Directory.Exists(e.
FullPath
))
290
Directory.EnumerateFileSystemEntries(e.
FullPath
, "*", SearchOption.AllDirectories))
293
string oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.
FullPath
.Length + 1));
316
OnFileSystemEntryChange(e.
FullPath
);