Fix: Ensure folder contents are restored on undo (Fixes #249263) #249273
+91
−16
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi team,
This PR addresses issue #249263, where undoing a folder deletion operation did not correctly restore the contents of the deleted folder.
Problem:
Previously, when a folder delete operation was undone, only the folder itself might be recreated, but its child files and subfolders, along with their content, were not being restored. This led to data loss and an incomplete undo state.
Solution:
The DeleteOperation in
bulkFileEdits.ts
has been modified to ensure a comprehensive restoration of folder contents during an undo. The key changes are:These changes ensure that undoing a folder deletion now accurately restores the folder and all its original contents, providing a more reliable and intuitive user experience.
How to Verify:
Thanks!