23 references to FullPath
Microsoft.DotNet.HotReload.Utils.Generator (2)
Runners\LiveRunner.cs (2)
38Console.WriteLine($"change in {fsevent.FullPath} is a {fsevent.ChangeType} at {e}"); 45var fp = fsevent.FullPath;
Microsoft.DotNet.HotReload.Watch (14)
FileWatcher\EventBasedDirectoryWatcher.cs (14)
61Logger?.Invoke($"[FW] Renamed '{e.OldFullPath}' to '{e.FullPath}'."); 63if (Directory.Exists(e.FullPath)) 65foreach (var newLocation in Directory.EnumerateFiles(e.FullPath, "*", SearchOption.AllDirectories)) 68var oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.FullPath.Length + 1)); 76NotifyChange(e.FullPath, ChangeKind.Add); 87var isDir = Directory.Exists(e.FullPath); 89Logger?.Invoke($"[FW] Deleted '{e.FullPath}'."); 97NotifyChange(e.FullPath, ChangeKind.Delete); 107var isDir = Directory.Exists(e.FullPath); 109Logger?.Invoke($"[FW] Updated '{e.FullPath}'."); 117NotifyChange(e.FullPath, ChangeKind.Update); 127var isDir = Directory.Exists(e.FullPath); 129Logger?.Invoke($"[FW] Added '{e.FullPath}'."); 136NotifyChange(e.FullPath, ChangeKind.Add);
Microsoft.Extensions.FileProviders.Physical (7)
PhysicalFilesWatcher.cs (7)
335OnFileSystemEntryChange(e.FullPath); 337if (Directory.Exists(e.FullPath)) 344Directory.EnumerateFileSystemEntries(e.FullPath, "*", SearchOption.AllDirectories)) 347string oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.FullPath.Length + 1)); 366OnFileSystemEntryChange(e.FullPath); 978if (!Directory.Exists(e.FullPath)) 986string createdPath = e.FullPath;