-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathFileUtil.cs
553 lines (503 loc) · 20.9 KB
/
FileUtil.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
namespace Nexus.Client.Util
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Threading;
using Nexus.Client.Util.Collections;
/// <summary>
/// Utility functions to work with files.
/// </summary>
public class FileUtil
{
// Copies, moves, renames, or deletes a file system object.
[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
public static extern Int32 SHFileOperation(
ref SHFILEOPSTRUCT lpFileOp); // Address of an SHFILEOPSTRUCT
// structure that contains information this function needs
// to carry out the specified operation. This parameter must
// contain a valid value that is not NULL. You are
// responsible for validating the value. If you do not
// validate it, you will experience unexpected results.
// Contains information that the SHFileOperation function uses to perform
// file operations.
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct SHFILEOPSTRUCT
{
public IntPtr hwnd; // Window handle to the dialog box to display
// information about the status of the file
// operation.
public UInt32 wFunc; // Value that indicates which operation to
// perform.
public IntPtr pFrom; // Address of a buffer to specify one or more
// source file names. These names must be
// fully qualified paths. Standard Microsoft®
// MS-DOS® wild cards, such as "*", are
// permitted in the file-name position.
// Although this member is declared as a
// null-terminated string, it is used as a
// buffer to hold multiple file names. Each
// file name must be terminated by a single
// NULL character. An additional NULL
// character must be appended to the end of
// the final name to indicate the end of pFrom.
public IntPtr pTo; // Address of a buffer to contain the name of
// the destination file or directory. This
// parameter must be set to NULL if it is not
// used. Like pFrom, the pTo member is also a
// double-null terminated string and is handled
// in much the same way.
public UInt16 fFlags; // Flags that control the file operation.
public Int32 fAnyOperationsAborted;
// Value that receives TRUE if the user aborted
// any file operations before they were
// completed, or FALSE otherwise.
public IntPtr hNameMappings;
// A handle to a name mapping object containing
// the old and new names of the renamed files.
// This member is used only if the
// fFlags member includes the
// FOF_WANTMAPPINGHANDLE flag.
[MarshalAs(UnmanagedType.LPWStr)]
public String lpszProgressTitle;
// Address of a string to use as the title of
// a progress dialog box. This member is used
// only if fFlags includes the
// FOF_SIMPLEPROGRESS flag.
}
private enum Operation : uint
{
FO_MOVE = 0x0001,
FO_COPY = 0x0002,
FO_DELETE = 0x0003,
FO_RENAME = 0x0004,
}
private static readonly Regex m_rgxCleanPath = new Regex("[" + Path.DirectorySeparatorChar + Path.AltDirectorySeparatorChar + "]{2,}");
/// <summary>
/// Creates a temporary directory.
/// </summary>
/// <returns>The path to the newly created temporary directory.</returns>
public virtual string CreateTempDirectory()
{
return CreateTempDirectory(Path.GetTempPath());
}
/// <summary>
/// Creates a temporary directory rooted at the given path.
/// </summary>
/// <param name="p_strBasePath">The path under which to create the temporary directory.</param>
/// <returns>The path to the newly created temporary directory.</returns>
protected string CreateTempDirectory(string p_strBasePath)
{
for (Int32 i = 0; i < Int32.MaxValue; i++)
{
string strPath = Path.Combine(p_strBasePath, Path.GetRandomFileName());
if (!Directory.Exists(strPath))
{
Directory.CreateDirectory(strPath);
return strPath + Path.DirectorySeparatorChar;
}
}
throw new Exception("Could not create temporary folder because directory is full.");
}
public static bool RenameDirectory(string p_strSource, string p_strDest)
{
SHFILEOPSTRUCT struc = new SHFILEOPSTRUCT();
struc.hNameMappings = IntPtr.Zero;
struc.hwnd = IntPtr.Zero;
struc.lpszProgressTitle = "Rename Release directory";
struc.pFrom = Marshal.StringToHGlobalUni(p_strSource);
struc.pTo = Marshal.StringToHGlobalUni(p_strDest);
struc.wFunc = (uint)Operation.FO_RENAME;
int ret = SHFileOperation(ref struc);
if (ret != 0)
return false;
else
return true;
}
/// <summary>
/// Copies the source to the destination.
/// </summary>
/// <remarks>
/// If the source is a directory, it is copied recursively.
/// </remarks>
/// <param name="p_strSource">The path from which to copy.</param>
/// <param name="p_strDestination">The path to which to copy.</param>
/// <param name="p_fncCopyCallback">A callback method that notifies the caller when a file has been copied,
/// and provides the opportunity to cancel the copy operation.</param>
/// <returns><c>true</c> if the copy operation wasn't cancelled; <c>false</c> otherwise.</returns>
public static bool Copy(string p_strSource, string p_strDestination, Func<string, bool> p_fncCopyCallback)
{
if (File.Exists(p_strSource))
{
if (!Directory.Exists(Path.GetDirectoryName(p_strDestination)))
Directory.CreateDirectory(Path.GetDirectoryName(p_strDestination));
File.Copy(p_strSource, p_strDestination, true);
if ((p_fncCopyCallback != null) && p_fncCopyCallback(p_strSource))
return false;
}
else if (Directory.Exists(p_strSource))
{
if (!Directory.Exists(p_strDestination))
Directory.CreateDirectory(p_strDestination);
string[] strFiles = Directory.GetFiles(p_strSource);
foreach (string strFile in strFiles)
{
File.Copy(strFile, Path.Combine(p_strDestination, Path.GetFileName(strFile)), true);
if ((p_fncCopyCallback != null) && p_fncCopyCallback(strFile))
return false;
}
string[] strDirectories = Directory.GetDirectories(p_strSource);
foreach (string strDirectory in strDirectories)
if (!Copy(strDirectory, Path.Combine(p_strDestination, Path.GetFileName(strDirectory)), p_fncCopyCallback))
return false;
}
return true;
}
/// <summary>
/// Moves the specified file to the specified path, optionally overwritting
/// any existing file.
/// </summary>
/// <param name="p_strFrom">The path to the file to move.</param>
/// <param name="p_strTo">the path to which to move the file.</param>
/// <param name="p_booOverwrite">Whether to overwrite any file found at the destination.</param>
public static void Move(string p_strFrom, string p_strTo, bool p_booOverwrite)
{
if (p_booOverwrite)
ForceDelete(p_strTo);
File.Move(p_strFrom, p_strTo);
}
/// <summary>
/// Creates a directory at the given path.
/// </summary>
/// <remarks>
/// The standard <see cref="Directory.CreateDirectory()"/> has a latency issue where
/// the directory is not necessarily ready for use immediately after creation. This
/// method waits until the cirectory is created and ready before returning.
/// </remarks>
/// <param name="p_strPath">The path of the directory to create.</param>
public static void CreateDirectory(string p_strPath)
{
int intRetries = 1;
Directory.CreateDirectory(p_strPath);
while (!Directory.Exists(p_strPath) && intRetries <= 10)
{
intRetries++;
Thread.Sleep(100);
}
}
/// <summary>
/// Forces deletion of the given path.
/// </summary>
/// <remarks>
/// This method is recursive if the given path is a directory. This method will clear read only/system
/// attributes if required to delete the path.
/// </remarks>
/// <param name="p_strPath">The path to delete.</param>
public static void ForceDelete(string p_strPath)
{
for (Int32 i = 0; i < 5; i++)
{
try
{
if (File.Exists(p_strPath))
File.Delete(p_strPath);
else if (Directory.Exists(p_strPath))
Directory.Delete(p_strPath, true);
return;
}
catch (Exception e)
{
if (!(e is IOException || e is UnauthorizedAccessException || e is DirectoryNotFoundException || e is FileNotFoundException))
throw;
try
{
ClearAttributes(p_strPath, true);
}
catch (Exception ex)
{
if (!(ex is IOException || ex is ArgumentException || ex is DirectoryNotFoundException || e is FileNotFoundException))
throw;
//we couldn't clear the attributes
}
}
}
}
/// <summary>
/// Clears the attributes of the given path.
/// </summary>
/// <remarks>
/// This sets the path's attributes to <see cref="FileAttributes.Normal"/>. This operation is
/// optionally recursive.
/// </remarks>
/// <param name="p_strPath">The path whose attributes are to be cleared.</param>
/// <param name="p_booRecurse">Whether or not to clear the attributes on all children files and folers.</param>
public static void ClearAttributes(string p_strPath, bool p_booRecurse)
{
try
{
if (File.Exists(p_strPath))
{
FileInfo fifFile = new FileInfo(p_strPath);
fifFile.Attributes = FileAttributes.Normal;
}
else if (Directory.Exists(p_strPath))
ClearAttributes(new DirectoryInfo(p_strPath), p_booRecurse);
}
catch (Exception e)
{
if (!(e is IOException || e is UnauthorizedAccessException || e is DirectoryNotFoundException || e is FileNotFoundException))
throw;
}
}
/// <summary>
/// Clears the attributes of the given directory.
/// </summary>
/// <remarks>
/// This sets the directory's attributes to <see cref="FileAttributes.Normal"/>. This operation is
/// optionally recursive.
/// </remarks>
/// <param name="p_difPath">The directory whose attributes are to be cleared.</param>
/// <param name="p_booRecurse">Whether or not to clear the attributes on all children files and folers.</param>
public static void ClearAttributes(DirectoryInfo p_difPath, bool p_booRecurse)
{
try
{
p_difPath.Attributes = FileAttributes.Normal;
if (p_booRecurse)
{
foreach (DirectoryInfo difDirectory in p_difPath.GetDirectories())
ClearAttributes(difDirectory, p_booRecurse);
foreach (FileInfo fifFile in p_difPath.GetFiles())
fifFile.Attributes = FileAttributes.Normal;
}
}
catch (Exception e)
{
if (!(e is IOException || e is UnauthorizedAccessException || e is DirectoryNotFoundException || e is FileNotFoundException))
throw;
}
}
/// <summary>
/// Determines whether or not the given path represents a drive.
/// </summary>
/// <param name="p_strPath">The path for which it is to be determine whether it represents a drive.</param>
/// <returns><c>true</c> the the given path represents a drive;
/// <c>false</c> otherwise.</returns>
public static bool IsDrivePath(string p_strPath)
{
return p_strPath.Trim(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar).EndsWith(Path.VolumeSeparatorChar.ToString(), StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// Determines if the file system of the drive is suitable for NMM to use.
/// </summary>
/// <param name="p_strPath">Path to folder on drive we want to check.</param>
/// <returns>True if we expect NMM to be able to use the drive in question, otherwise false.</returns>
public static bool DoesFileSystemSupportSymbolicLinks(string p_strPath)
{
if (string.IsNullOrEmpty(p_strPath))
{
// Won't matter if there's no path.
return true;
}
// This list can be extended as needed, and is not case sensitive.
var knownBadFileSystems = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{
"FAT",
"FAT32",
"ReFS",
"exFAT"
};
var file = new FileInfo(p_strPath);
if (file.Directory != null)
{
var drive = new DriveInfo(file.Directory.Root.FullName);
return !knownBadFileSystems.Contains(drive.DriveFormat);
}
// Either the path points to the root, or something is very wrong.
if (Regex.IsMatch(p_strPath, @"[a-zA-Z]:"))
{
return !knownBadFileSystems.Contains(p_strPath);
}
else
{
// No idea how to handle this, so just assume it works.
Trace.TraceWarning($"Could not determine file system for path \"{p_strPath}\".");
return true;
}
}
/// <summary>
/// Writes the given data to the specified file.
/// </summary>
/// <remarks>
/// If the specified file exists, it will be overwritten. If the specified file
/// does not exist, it is created. If the directory containing the specified file
/// does not exist, it is created.
/// </remarks>
/// <param name="p_strPath">The path to which to write the given data.</param>
/// <param name="p_bteData">The data to write to the file.</param>
public static void WriteAllBytes(string p_strPath, byte[] p_bteData)
{
string strDirectory = Path.GetDirectoryName(p_strPath);
if (!Directory.Exists(strDirectory))
Directory.CreateDirectory(strDirectory);
File.WriteAllBytes(p_strPath, p_bteData);
}
/// <summary>
/// Writes the given data to the specified file.
/// </summary>
/// <remarks>
/// If the specified file exists, it will be overwritten. If the specified file
/// does not exist, it is created. If the directory containing the specified file
/// does not exist, it is created.
/// </remarks>
/// <param name="p_strPath">The path to which to write the given text.</param>
/// <param name="p_strData">The text to write to the file.</param>
public static void WriteAllText(string p_strPath, string p_strData)
{
string strDirectory = Path.GetDirectoryName(p_strPath);
if (!Directory.Exists(strDirectory))
Directory.CreateDirectory(strDirectory);
File.WriteAllText(p_strPath, p_strData);
}
/// <summary>
/// Determines if the given path is valid.
/// </summary>
/// <param name="p_strPath">The path to examine.</param>
/// <returns><c>true</c> if the given path is valid;
/// <c>false</c> if it contains invalid chars or it's too long.</returns>
public static bool IsValidPath(string p_strPath)
{
if (String.IsNullOrEmpty(p_strPath))
return false;
else if ((p_strPath.Length >= 260) || (p_strPath.LastIndexOf(@"\") >= 247))
return false;
else
return !ContainsInvalidPathChars(p_strPath);
}
/// <summary>
/// Determines if the given path contains invalid characters.
/// </summary>
/// <param name="p_strPath">The path to examine.</param>
/// <returns><c>true</c> if the given path contains invalid characters;
/// <c>false</c> otherwise.</returns>
public static bool ContainsInvalidPathChars(string p_strPath)
{
if (String.IsNullOrEmpty(p_strPath))
return false;
Set<string> setChars = new Set<string>();
string strPath = Path.GetDirectoryName(p_strPath);
if (!String.IsNullOrEmpty(strPath))
{
foreach (char chrInvalidChar in Path.GetInvalidPathChars())
setChars.Add("\\x" + ((Int32)chrInvalidChar).ToString("x2"));
Regex rgxInvalidPath = new Regex("[" + String.Join("", setChars.ToArray()) + "]");
if (rgxInvalidPath.IsMatch(strPath))
return true;
}
string strFile = Path.GetFileName(p_strPath);
if (String.IsNullOrEmpty(strPath))
return false;
setChars.Clear();
foreach (char chrInvalidChar in Path.GetInvalidFileNameChars())
setChars.Add("\\x" + ((Int32)chrInvalidChar).ToString("x2"));
Regex rgxInvalidFile = new Regex("[" + String.Join("", setChars.ToArray()) + "]");
return rgxInvalidFile.IsMatch(strFile);
}
/// <summary>
/// Removes all invalid characters from the given path.
/// </summary>
/// <param name="p_strPath">The path to clean.</param>
/// <returns>The given path with all invalid characters removed.</returns>
public static string StripInvalidPathChars(string p_strPath)
{
if (String.IsNullOrEmpty(p_strPath))
return p_strPath;
Set<string> setChars = new Set<string>();
p_strPath = p_strPath.Replace("\"", "");
string strPath = Path.GetDirectoryName(p_strPath);
foreach (char chrInvalidChar in Path.GetInvalidPathChars())
setChars.Add("\\x" + ((Int32)chrInvalidChar).ToString("x2"));
Regex rgxInvalidPath = new Regex("[" + String.Join("", setChars.ToArray()) + "]");
strPath = rgxInvalidPath.Replace(strPath, "");
string strFile = Path.GetFileName(p_strPath);
setChars.Clear();
foreach (char chrInvalidChar in Path.GetInvalidFileNameChars())
setChars.Add("\\x" + ((Int32)chrInvalidChar).ToString("x2"));
rgxInvalidPath = new Regex("[" + String.Join("", setChars.ToArray()) + "]");
strFile = rgxInvalidPath.Replace(strFile, "");
return Path.Combine(strPath, strFile);
}
/// <summary>
/// Generates a path that is relative to another path.
/// </summary>
/// <param name="p_strRoot">The root directory with respect to which the path will be made relative.</param>
/// <param name="p_strPath">The path to make relative.</param>
/// <returns>The relative form of the given path, relative with respect to the given root.</returns>
/// <exception cref="ArgumentNullException">Thrown if either parameter is <c>null</c>.</exception>
public static string RelativizePath(string p_strRoot, string p_strPath)
{
if (p_strRoot == null)
throw new ArgumentNullException("p_strFrom");
if (p_strPath == null)
throw new ArgumentNullException("p_strRoot");
p_strRoot = p_strRoot.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
p_strPath = p_strPath.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
if (Path.IsPathRooted(p_strRoot) && Path.IsPathRooted(p_strPath) && !Path.GetPathRoot(p_strRoot).Equals(Path.GetPathRoot(p_strPath), StringComparison.OrdinalIgnoreCase))
return p_strPath;
string[] strRootPaths = p_strRoot.Split(new char[] { Path.DirectorySeparatorChar }, StringSplitOptions.RemoveEmptyEntries);
string[] strPathsToRelativize = p_strPath.Split(new char[] { Path.DirectorySeparatorChar }, StringSplitOptions.RemoveEmptyEntries);
Int32 intMinPathLength = Math.Min(strRootPaths.Length, strPathsToRelativize.Length);
Int32 intLastCommonPathIndex = -1;
for (Int32 i = 0; i < intMinPathLength; i++)
{
if (!strRootPaths[i].Equals(strPathsToRelativize[i], StringComparison.OrdinalIgnoreCase))
break;
intLastCommonPathIndex = i;
}
if (intLastCommonPathIndex == -1)
return p_strPath;
List<string> lstRelativePaths = new List<string>();
for (Int32 i = intLastCommonPathIndex + 1; i < strRootPaths.Length; i++)
lstRelativePaths.Add("..");
for (Int32 i = intLastCommonPathIndex + 1; i < strPathsToRelativize.Length; i++)
lstRelativePaths.Add(strPathsToRelativize[i]);
return String.Join(Path.DirectorySeparatorChar.ToString(), lstRelativePaths.ToArray());
}
/// <summary>
/// Normalizes the given path.
/// </summary>
/// <remarks>
/// This removes multiple consecutive path separators and makes sure all path
/// separators are <see cref="Path.DirectorySeparatorChar"/>.
/// </remarks>
/// <param name="p_strPath">The path to normalize.</param>
/// <returns>The normalized path.</returns>
public static string NormalizePath(string p_strPath)
{
string strNormalizedPath = m_rgxCleanPath.Replace(p_strPath, Path.DirectorySeparatorChar.ToString());
strNormalizedPath = strNormalizedPath.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
strNormalizedPath = strNormalizedPath.Trim(Path.DirectorySeparatorChar);
return strNormalizedPath;
}
/// <summary>
/// Checks whether the file to write to is currently free for use.
/// </summary>
public static bool IsFileReady(string p_strFilePath)
{
try
{
using (FileStream inputStream = File.Open(p_strFilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite))
{
return (inputStream.Length >= 0);
}
}
catch (Exception)
{
return false;
}
}
}
}