├── Differ
├── DiffResult.cs
├── Differ.csproj
├── Program.cs
└── DiffRunner.cs
├── README.md
├── LICENSE
├── Differ.sln
└── .gitignore
/Differ/DiffResult.cs:
--------------------------------------------------------------------------------
1 | namespace Differ
2 | {
3 | public readonly record struct DiffResult(string Path, DiffStatus Status);
4 |
5 | public enum DiffStatus
6 | {
7 | Error,
8 | Identical,
9 | Modified,
10 | Added,
11 | Deleted
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/Differ/Differ.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | net6.0
6 | enable
7 | enable
8 | true
9 | true
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Differ/Program.cs:
--------------------------------------------------------------------------------
1 | using Differ;
2 | using System.Threading.Channels;
3 |
4 | ExecutionContext.SuppressFlow(); // we're a simple tool; don't bother flowing EC
5 |
6 | Channel channel = Channel.CreateUnbounded();
7 |
8 | var runner = new DiffRunner(
9 | left: new DirectoryInfo(args[0]),
10 | right: new DirectoryInfo(args[1]),
11 | writer: channel.Writer);
12 |
13 | runner.Process();
14 |
15 | await foreach (var item in channel.Reader.ReadAllAsync())
16 | {
17 | Console.WriteLine($"{item.Path} >>> {item.Status}");
18 | }
19 |
20 | Console.WriteLine();
21 | Console.WriteLine(">> COMPLETE <<");
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # differ
2 |
3 | Simple command-line tool to see if directories contain identical files
4 |
5 | ## Usage
6 |
7 | ```txt
8 | differ
9 | ```
10 |
11 | The tool will recursively iterate through both the _left_ and the _right_ directories, comparing the contents of files in each directory. It writes to the console a status for each file.
12 |
13 | * __Added__ - The file is present only in _right_.
14 | * __Deleted__ - The file is present only in _left_.
15 | * __Identical__ - The file is present in both _left_ and _right_ and the contents have not changed.
16 | * __Modified__ - The file is present in both _left_ and _right_ and the contents have changed.
17 |
18 | The tool compares filenames using a case-insensitive comparer. File renames are not tracked. If a file is renamed from _a.txt_ to _b.txt_ between the two directories, this will be reported as an addition (for _b.txt_) and a deletion (for _a.txt_).
19 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 Levi Broderick
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 |
--------------------------------------------------------------------------------
/Differ.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.2.32216.311
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Differ", "Differ\Differ.csproj", "{BDE1C00A-E6AB-4A8D-8E43-9F416C087DB1}"
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 | {BDE1C00A-E6AB-4A8D-8E43-9F416C087DB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {BDE1C00A-E6AB-4A8D-8E43-9F416C087DB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {BDE1C00A-E6AB-4A8D-8E43-9F416C087DB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {BDE1C00A-E6AB-4A8D-8E43-9F416C087DB1}.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 = {CAD4E4F0-C5EC-49D7-8CB0-0CA59DF297A2}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/Differ/DiffRunner.cs:
--------------------------------------------------------------------------------
1 | using System.IO.MemoryMappedFiles;
2 | using System.Threading.Channels;
3 |
4 | namespace Differ
5 | {
6 | internal sealed class DiffRunner
7 | {
8 | private readonly DirectoryInfo _left;
9 | private readonly DirectoryInfo _right;
10 | private readonly ChannelWriter _writer;
11 |
12 | public DiffRunner(DirectoryInfo left, DirectoryInfo right, ChannelWriter writer)
13 | {
14 | _left = left;
15 | _right = right;
16 | _writer = writer;
17 | }
18 |
19 | public void Process()
20 | {
21 | Task.Run(async () =>
22 | {
23 | List tasks = new List();
24 |
25 | HashSet filenames = new HashSet(StringComparer.OrdinalIgnoreCase);
26 | foreach (string filename in GetRecursiveFileList(_left).Concat(GetRecursiveFileList(_right)))
27 | {
28 | if (filenames.Add(filename))
29 | {
30 | // first time this file has been seen - process it!
31 | var newTask = Task.Run(() => _writer.WriteAsync(new DiffResult(filename, GetStatus(filename))));
32 | tasks.Add(newTask);
33 | }
34 | }
35 |
36 | await Task.WhenAll(tasks);
37 | _writer.Complete();
38 | });
39 | }
40 |
41 | private DiffStatus GetStatus(string relativeFilename)
42 | {
43 | try
44 | {
45 | FileInfo left = new FileInfo(_left.FullName + relativeFilename);
46 | FileInfo right = new FileInfo(_right.FullName + relativeFilename);
47 |
48 | bool leftExists = left.Exists;
49 | bool rightExists = right.Exists;
50 |
51 | if (leftExists && !rightExists) { return DiffStatus.Deleted; }
52 | if (rightExists && !leftExists) { return DiffStatus.Added; }
53 | if (!leftExists && !rightExists) { return DiffStatus.Error; }
54 |
55 | long leftLength = left.Length;
56 | long rightLength = right.Length;
57 |
58 | if (leftLength != rightLength) { return DiffStatus.Modified; }
59 | if (leftLength == 0 && rightLength == 0) { return DiffStatus.Identical; }
60 | if (leftLength == 0 || rightLength == 0) { return DiffStatus.Modified; }
61 |
62 | using var leftMMF = OpenFile(left);
63 | using var rightMMF = OpenFile(right);
64 |
65 | return AreFilesIdentical(leftMMF, rightMMF, leftLength) ? DiffStatus.Identical : DiffStatus.Modified;
66 | }
67 | catch
68 | {
69 | return DiffStatus.Error;
70 | }
71 | }
72 |
73 | private static MemoryMappedFile OpenFile(FileInfo file)
74 | {
75 | FileStream fs = file.Open(FileMode.Open, FileAccess.Read, FileShare.Read);
76 | return MemoryMappedFile.CreateFromFile(fs, null, 0, MemoryMappedFileAccess.Read, HandleInheritability.None, false);
77 | }
78 |
79 | private static unsafe bool AreFilesIdentical(MemoryMappedFile left, MemoryMappedFile right, long actualLength)
80 | {
81 | using var leftAccr = left.CreateViewAccessor(0, actualLength, MemoryMappedFileAccess.Read);
82 | using var rightAccr = right.CreateViewAccessor(0, actualLength, MemoryMappedFileAccess.Read);
83 |
84 | var leftHnd = leftAccr.SafeMemoryMappedViewHandle;
85 | var rightHnd = rightAccr.SafeMemoryMappedViewHandle;
86 |
87 | if (leftHnd.ByteLength != rightHnd.ByteLength) { return false; }
88 |
89 | byte* leftPtr = null;
90 | byte* rightPtr = null;
91 |
92 | try
93 | {
94 | leftHnd.AcquirePointer(ref leftPtr);
95 | rightHnd.AcquirePointer(ref rightPtr);
96 |
97 | ulong currentOffset = 0;
98 | ulong remainingByteLength = leftHnd.ByteLength;
99 | while (remainingByteLength > 0)
100 | {
101 | int thisSpanSize = (int)Math.Min(int.MaxValue, remainingByteLength);
102 | ReadOnlySpan leftSpan = new ReadOnlySpan(leftPtr + currentOffset, thisSpanSize);
103 | ReadOnlySpan rightSpan = new ReadOnlySpan(rightPtr + currentOffset, thisSpanSize);
104 | if (!leftSpan.SequenceEqual(rightSpan))
105 | {
106 | return false;
107 | }
108 |
109 | currentOffset += (uint)thisSpanSize;
110 | remainingByteLength -= (uint)thisSpanSize;
111 | }
112 |
113 | return true;
114 | }
115 | finally
116 | {
117 | if (leftPtr != null) { leftHnd.ReleasePointer(); }
118 | if (rightPtr != null) { rightHnd.ReleasePointer(); }
119 | }
120 | }
121 |
122 | private static IEnumerable GetRecursiveFileList(DirectoryInfo path)
123 | {
124 | int pathLength = path.FullName.Length;
125 | var allFiles = Directory.EnumerateFiles(path.FullName, "*", SearchOption.AllDirectories);
126 | foreach (var file in allFiles)
127 | {
128 | yield return file.Substring(pathLength);
129 | }
130 | }
131 | }
132 | }
133 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.rsuser
8 | *.suo
9 | *.user
10 | *.userosscache
11 | *.sln.docstates
12 |
13 | # User-specific files (MonoDevelop/Xamarin Studio)
14 | *.userprefs
15 |
16 | # Mono auto generated files
17 | mono_crash.*
18 |
19 | # Build results
20 | [Dd]ebug/
21 | [Dd]ebugPublic/
22 | [Rr]elease/
23 | [Rr]eleases/
24 | x64/
25 | x86/
26 | [Aa][Rr][Mm]/
27 | [Aa][Rr][Mm]64/
28 | bld/
29 | [Bb]in/
30 | [Oo]bj/
31 | [Ll]og/
32 | [Ll]ogs/
33 |
34 | # Visual Studio 2015/2017 cache/options directory
35 | .vs/
36 | # Uncomment if you have tasks that create the project's static files in wwwroot
37 | #wwwroot/
38 |
39 | # Visual Studio 2017 auto generated files
40 | Generated\ Files/
41 |
42 | # MSTest test Results
43 | [Tt]est[Rr]esult*/
44 | [Bb]uild[Ll]og.*
45 |
46 | # NUnit
47 | *.VisualState.xml
48 | TestResult.xml
49 | nunit-*.xml
50 |
51 | # Build Results of an ATL Project
52 | [Dd]ebugPS/
53 | [Rr]eleasePS/
54 | dlldata.c
55 |
56 | # Benchmark Results
57 | BenchmarkDotNet.Artifacts/
58 |
59 | # .NET Core
60 | project.lock.json
61 | project.fragment.lock.json
62 | artifacts/
63 |
64 | # StyleCop
65 | StyleCopReport.xml
66 |
67 | # Files built by Visual Studio
68 | *_i.c
69 | *_p.c
70 | *_h.h
71 | *.ilk
72 | *.meta
73 | *.obj
74 | *.iobj
75 | *.pch
76 | *.pdb
77 | *.ipdb
78 | *.pgc
79 | *.pgd
80 | *.rsp
81 | *.sbr
82 | *.tlb
83 | *.tli
84 | *.tlh
85 | *.tmp
86 | *.tmp_proj
87 | *_wpftmp.csproj
88 | *.log
89 | *.vspscc
90 | *.vssscc
91 | .builds
92 | *.pidb
93 | *.svclog
94 | *.scc
95 |
96 | # Chutzpah Test files
97 | _Chutzpah*
98 |
99 | # Visual C++ cache files
100 | ipch/
101 | *.aps
102 | *.ncb
103 | *.opendb
104 | *.opensdf
105 | *.sdf
106 | *.cachefile
107 | *.VC.db
108 | *.VC.VC.opendb
109 |
110 | # Visual Studio profiler
111 | *.psess
112 | *.vsp
113 | *.vspx
114 | *.sap
115 |
116 | # Visual Studio Trace Files
117 | *.e2e
118 |
119 | # TFS 2012 Local Workspace
120 | $tf/
121 |
122 | # Guidance Automation Toolkit
123 | *.gpState
124 |
125 | # ReSharper is a .NET coding add-in
126 | _ReSharper*/
127 | *.[Rr]e[Ss]harper
128 | *.DotSettings.user
129 |
130 | # TeamCity is a build add-in
131 | _TeamCity*
132 |
133 | # DotCover is a Code Coverage Tool
134 | *.dotCover
135 |
136 | # AxoCover is a Code Coverage Tool
137 | .axoCover/*
138 | !.axoCover/settings.json
139 |
140 | # Visual Studio code coverage results
141 | *.coverage
142 | *.coveragexml
143 |
144 | # NCrunch
145 | _NCrunch_*
146 | .*crunch*.local.xml
147 | nCrunchTemp_*
148 |
149 | # MightyMoose
150 | *.mm.*
151 | AutoTest.Net/
152 |
153 | # Web workbench (sass)
154 | .sass-cache/
155 |
156 | # Installshield output folder
157 | [Ee]xpress/
158 |
159 | # DocProject is a documentation generator add-in
160 | DocProject/buildhelp/
161 | DocProject/Help/*.HxT
162 | DocProject/Help/*.HxC
163 | DocProject/Help/*.hhc
164 | DocProject/Help/*.hhk
165 | DocProject/Help/*.hhp
166 | DocProject/Help/Html2
167 | DocProject/Help/html
168 |
169 | # Click-Once directory
170 | publish/
171 |
172 | # Publish Web Output
173 | *.[Pp]ublish.xml
174 | *.azurePubxml
175 | # Note: Comment the next line if you want to checkin your web deploy settings,
176 | # but database connection strings (with potential passwords) will be unencrypted
177 | *.pubxml
178 | *.publishproj
179 |
180 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
181 | # checkin your Azure Web App publish settings, but sensitive information contained
182 | # in these scripts will be unencrypted
183 | PublishScripts/
184 |
185 | # NuGet Packages
186 | *.nupkg
187 | # NuGet Symbol Packages
188 | *.snupkg
189 | # The packages folder can be ignored because of Package Restore
190 | **/[Pp]ackages/*
191 | # except build/, which is used as an MSBuild target.
192 | !**/[Pp]ackages/build/
193 | # Uncomment if necessary however generally it will be regenerated when needed
194 | #!**/[Pp]ackages/repositories.config
195 | # NuGet v3's project.json files produces more ignorable files
196 | *.nuget.props
197 | *.nuget.targets
198 |
199 | # Microsoft Azure Build Output
200 | csx/
201 | *.build.csdef
202 |
203 | # Microsoft Azure Emulator
204 | ecf/
205 | rcf/
206 |
207 | # Windows Store app package directories and files
208 | AppPackages/
209 | BundleArtifacts/
210 | Package.StoreAssociation.xml
211 | _pkginfo.txt
212 | *.appx
213 | *.appxbundle
214 | *.appxupload
215 |
216 | # Visual Studio cache files
217 | # files ending in .cache can be ignored
218 | *.[Cc]ache
219 | # but keep track of directories ending in .cache
220 | !?*.[Cc]ache/
221 |
222 | # Others
223 | ClientBin/
224 | ~$*
225 | *~
226 | *.dbmdl
227 | *.dbproj.schemaview
228 | *.jfm
229 | *.pfx
230 | *.publishsettings
231 | orleans.codegen.cs
232 |
233 | # Including strong name files can present a security risk
234 | # (https://github.com/github/gitignore/pull/2483#issue-259490424)
235 | #*.snk
236 |
237 | # Since there are multiple workflows, uncomment next line to ignore bower_components
238 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
239 | #bower_components/
240 |
241 | # RIA/Silverlight projects
242 | Generated_Code/
243 |
244 | # Backup & report files from converting an old project file
245 | # to a newer Visual Studio version. Backup files are not needed,
246 | # because we have git ;-)
247 | _UpgradeReport_Files/
248 | Backup*/
249 | UpgradeLog*.XML
250 | UpgradeLog*.htm
251 | ServiceFabricBackup/
252 | *.rptproj.bak
253 |
254 | # SQL Server files
255 | *.mdf
256 | *.ldf
257 | *.ndf
258 |
259 | # Business Intelligence projects
260 | *.rdl.data
261 | *.bim.layout
262 | *.bim_*.settings
263 | *.rptproj.rsuser
264 | *- [Bb]ackup.rdl
265 | *- [Bb]ackup ([0-9]).rdl
266 | *- [Bb]ackup ([0-9][0-9]).rdl
267 |
268 | # Microsoft Fakes
269 | FakesAssemblies/
270 |
271 | # GhostDoc plugin setting file
272 | *.GhostDoc.xml
273 |
274 | # Node.js Tools for Visual Studio
275 | .ntvs_analysis.dat
276 | node_modules/
277 |
278 | # Visual Studio 6 build log
279 | *.plg
280 |
281 | # Visual Studio 6 workspace options file
282 | *.opt
283 |
284 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
285 | *.vbw
286 |
287 | # Visual Studio LightSwitch build output
288 | **/*.HTMLClient/GeneratedArtifacts
289 | **/*.DesktopClient/GeneratedArtifacts
290 | **/*.DesktopClient/ModelManifest.xml
291 | **/*.Server/GeneratedArtifacts
292 | **/*.Server/ModelManifest.xml
293 | _Pvt_Extensions
294 |
295 | # Paket dependency manager
296 | .paket/paket.exe
297 | paket-files/
298 |
299 | # FAKE - F# Make
300 | .fake/
301 |
302 | # CodeRush personal settings
303 | .cr/personal
304 |
305 | # Python Tools for Visual Studio (PTVS)
306 | __pycache__/
307 | *.pyc
308 |
309 | # Cake - Uncomment if you are using it
310 | # tools/**
311 | # !tools/packages.config
312 |
313 | # Tabs Studio
314 | *.tss
315 |
316 | # Telerik's JustMock configuration file
317 | *.jmconfig
318 |
319 | # BizTalk build output
320 | *.btp.cs
321 | *.btm.cs
322 | *.odx.cs
323 | *.xsd.cs
324 |
325 | # OpenCover UI analysis results
326 | OpenCover/
327 |
328 | # Azure Stream Analytics local run output
329 | ASALocalRun/
330 |
331 | # MSBuild Binary and Structured Log
332 | *.binlog
333 |
334 | # NVidia Nsight GPU debugger configuration file
335 | *.nvuser
336 |
337 | # MFractors (Xamarin productivity tool) working folder
338 | .mfractor/
339 |
340 | # Local History for Visual Studio
341 | .localhistory/
342 |
343 | # BeatPulse healthcheck temp database
344 | healthchecksdb
345 |
346 | # Backup folder for Package Reference Convert tool in Visual Studio 2017
347 | MigrationBackup/
348 |
349 | # Ionide (cross platform F# VS Code tools) working folder
350 | .ionide/
351 |
--------------------------------------------------------------------------------