├── media
├── icon.ico
├── icon.png
└── screenshot.png
├── App.xaml.cs
├── App.xaml
├── AssemblyInfo.cs
├── app.manifest
├── PendingFileRenameOperations-Viewer.csproj
├── README.md
├── LICENSE.txt
├── PendingFileRenameOperations-Viewer.sln
├── MainWindow.xaml.cs
├── RenameOperationStore.cs
├── .gitignore
└── MainWindow.xaml
/media/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BrandonXLF/PendingFileRenameOperations-Viewer/main/media/icon.ico
--------------------------------------------------------------------------------
/media/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BrandonXLF/PendingFileRenameOperations-Viewer/main/media/icon.png
--------------------------------------------------------------------------------
/media/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BrandonXLF/PendingFileRenameOperations-Viewer/main/media/screenshot.png
--------------------------------------------------------------------------------
/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.Windows;
2 |
3 | namespace PendingFileRenameOperationsViewer
4 | {
5 | public partial class App : Application {}
6 | }
7 |
--------------------------------------------------------------------------------
/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Windows;
2 |
3 | [assembly: ThemeInfo(
4 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
5 | //(used if a resource is not found in the page,
6 | // or application resource dictionaries)
7 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
8 | //(used if a resource is not found in the page,
9 | // app, or any theme specific resource dictionaries)
10 | )]
11 |
--------------------------------------------------------------------------------
/app.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | true
13 | true
14 |
15 |
16 |
--------------------------------------------------------------------------------
/PendingFileRenameOperations-Viewer.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | WinExe
5 | net8.0-windows
6 | enable
7 | enable
8 | true
9 | PendingFileRenameOperationsViewer
10 | media\icon.ico
11 | app.manifest
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # PendingFileRenameOperations Viewer
2 |
3 | PendingFileRenameOperations Viewer is a simple tool that allows you to view pending file renames and deletions from the `PendingFileRenameOperations` registry key. The registry key contains pending file renames and deletions that will be preformed on the next restart.
4 |
5 | ## Screenshot
6 |
7 | [](media/screenshot.png)
8 |
9 | ## Building
10 |
11 | Pending File Rename Operations Viewer is built with Visual Studio.
12 | To create a production version of the application, publish the project "PendingFileRenameOperations-Viewer".
13 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Brandon Fowler
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/PendingFileRenameOperations-Viewer.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.9.34622.214
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PendingFileRenameOperationsViewer", "PendingFileRenameOperations-Viewer.csproj", "{CA15E2A4-6091-4BDF-8108-CEBD079ECD64}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {CA15E2A4-6091-4BDF-8108-CEBD079ECD64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {CA15E2A4-6091-4BDF-8108-CEBD079ECD64}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {CA15E2A4-6091-4BDF-8108-CEBD079ECD64}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {CA15E2A4-6091-4BDF-8108-CEBD079ECD64}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {A25F6505-8E45-4A7D-ACB6-6034F42A1035}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.WindowsAPICodePack.Dialogs;
2 | using System.IO;
3 | using System.Windows;
4 | using System.Windows.Controls;
5 |
6 | namespace PendingFileRenameOperationsViewer
7 | {
8 | public partial class MainWindow : Window
9 | {
10 | private readonly RenameOperationStore store;
11 |
12 | private readonly Action