blob: 23b10ede846c63d9ec551dbcd5a6faccea2c3493 (
plain)
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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;
/// <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(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "HandBrake", "Nightly");
}
else
{
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "HandBrake");
}
}
}
}
|