23 references to FullPath
Microsoft.DotNet.HotReload.Utils.Generator (2)
Runners\LiveRunner.cs (2)
38
Console.WriteLine($"change in {fsevent.
FullPath
} is a {fsevent.ChangeType} at {e}");
45
var fp = fsevent.
FullPath
;
Microsoft.DotNet.HotReload.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.Extensions.FileProviders.Physical (7)
PhysicalFilesWatcher.cs (7)
335
OnFileSystemEntryChange(e.
FullPath
);
337
if (Directory.Exists(e.
FullPath
))
344
Directory.EnumerateFileSystemEntries(e.
FullPath
, "*", SearchOption.AllDirectories))
347
string oldLocation = Path.Combine(e.OldFullPath, newLocation.Substring(e.
FullPath
.Length + 1));
366
OnFileSystemEntryChange(e.
FullPath
);
978
if (!Directory.Exists(e.
FullPath
))
986
string createdPath = e.
FullPath
;