20 references to FullPath
dotnet-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.CodeAnalysis.LanguageServer (1)
HostWorkspace\FileWatching\SimpleFileChangeWatcher.cs (1)
83FileChanged?.Invoke(this, e.FullPath);
Microsoft.Extensions.FileProviders.Physical (5)
PhysicalFilesWatcher.cs (5)
281OnFileSystemEntryChange(e.FullPath); 283if (Directory.Exists(e.FullPath)) 290Directory.EnumerateFileSystemEntries(e.FullPath, "*", SearchOption.AllDirectories)) 293string oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.FullPath.Length + 1)); 316OnFileSystemEntryChange(e.FullPath);