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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="DirectoryUtilities.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Defines the DirectoryUtilities type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Utilities
{
using System;
using System.IO;
using System.Windows;
using HandBrakeWPF.Properties;
using HandBrakeWPF.Services.Interfaces;
/// <summary>
/// The directory utilities.
/// </summary>
public class DirectoryUtilities
{
/// <summary>
/// The get user storage path.
/// </summary>
/// <param name="isNightly">
/// The is nightly.
/// </param>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public static string GetUserStoragePath(bool isNightly)
{
if (isNightly)
{
return Path.Combine(GetStorageDirectory(), "HandBrake", "Nightly");
}
else
{
return Path.Combine(GetStorageDirectory(), "HandBrake");
}
}
/// <summary>
/// Get the app default log directory.
/// </summary>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public static string GetLogDirectory()
{
return Path.Combine(GetStorageDirectory(), "HandBrake", "logs");
}
/// <summary>
/// Simple way of checking if a directory is writeable.
/// </summary>
/// <param name="dirPath">Path to check</param>
/// <param name="createDirectoryPrompt">
/// Prompt to create directory if it doesn't exist.
/// </param>
/// <param name="errorService">
/// An instance of the error service to allow prompting.
/// </param>
/// <returns>True if writable</returns>
public static bool IsWritable(string dirPath, bool createDirectoryPrompt, IErrorService errorService)
{
try
{
if (!Directory.Exists(dirPath))
{
if (createDirectoryPrompt)
{
MessageBoxResult result = errorService.ShowMessageBox(string.Format(Resources.DirectoryUtils_CreateFolderMsg, dirPath), Resources.DirectoryUtils_CreateFolder, MessageBoxButton.YesNo, MessageBoxImage.Question);
if (result == MessageBoxResult.Yes)
{
Directory.CreateDirectory(dirPath);
}
}
else
{
Directory.CreateDirectory(dirPath);
}
}
using (File.Create(Path.Combine(dirPath, Path.GetRandomFileName()), 1, FileOptions.DeleteOnClose))
{
}
return true;
}
catch
{
return false;
}
}
/// <summary>
/// The get storage directory.
/// </summary>
/// <returns>
/// The storage directory. Either AppData or portable location.
/// </returns>
private static string GetStorageDirectory()
{
string storagePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
if (Portable.IsPortable())
{
storagePath = Portable.GetStorageDirectory();
}
return storagePath;
}
}
}
|