Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private void OnFileModifiedOrDeleted(string relativePath, bool isDirectory, bool
// NotificationType.FileHandleClosedFileModified and so this method will only be called for modifications.
// Once MacFileSystemVirtualizer supports delete notifications we'll register for
// NotificationType.FileHandleClosedFileDeleted and this method will be called for both modifications and deletions.
Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileDeleted}, isDeleted: {isFileDeleted}");
Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileModified}, isDeleted: {isFileDeleted}");
}

private void OnFileRenamed(
Expand Down Expand Up @@ -345,4 +345,4 @@ private static HResult HResultFromWin32(int win32error)
return win32error <= 0 ? (HResult)win32error : (HResult)unchecked((win32error & 0x0000FFFF) | (FacilityWin32 << 16) | 0x80000000);
}
}
}
}