-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTempPath.cs
137 lines (112 loc) · 4.81 KB
/
TempPath.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
using System;
using System.IO;
namespace LazyPathDemo
{
public class LazyDirectoryPath
{
// Parameters for path construction
private readonly string _basePath;
private readonly string[] _pathSegments;
private readonly bool _createIfNotExists;
private readonly LazyDirectoryPath _parentPath;
// Lazy<T> instance to handle delayed initialization
private readonly Lazy<string> _lazyPath;
// Public property that uses lazy initialization
public string Path => _lazyPath.Value;
// Constructor without parent path
public LazyDirectoryPath(string basePath, bool createIfNotExists, params string[] pathSegments)
: this(basePath, createIfNotExists, null, pathSegments)
{
}
// Constructor with parent path
public LazyDirectoryPath(string basePath, bool createIfNotExists, LazyDirectoryPath parentPath, params string[] pathSegments)
{
_basePath = basePath;
_pathSegments = pathSegments;
_createIfNotExists = createIfNotExists;
_parentPath = parentPath;
// Initialize the Lazy<string> with a function that builds and potentially creates the path
_lazyPath = new Lazy<string>(BuildAndCreatePath);
}
// Method that constructs the path and optionally creates the directory
private string BuildAndCreatePath()
{
Console.WriteLine("Building directory path (this happens only once)");
string fullPath;
// If we have a parent path, use it as the base
if (_parentPath != null)
{
fullPath = System.IO.Path.Combine(_parentPath.Path, _basePath);
}
else
{
fullPath = _basePath;
}
// Add all path segments
foreach (var segment in _pathSegments)
{
fullPath = System.IO.Path.Combine(fullPath, segment);
}
// Create directory if requested and it doesn't exist
if (_createIfNotExists && !Directory.Exists(fullPath))
{
Console.WriteLine($"Creating directory: {fullPath}");
Directory.CreateDirectory(fullPath);
}
return fullPath;
}
// Get a new LazyDirectoryPath that's a subdirectory of this one
public LazyDirectoryPath GetSubdirectory(string name, bool createIfNotExists = true)
{
return new LazyDirectoryPath(name, createIfNotExists, this);
}
// Override ToString to return the path
public override string ToString()
{
return Path;
}
// Define implicit conversion operator from LazyDirectoryPath to string
public static implicit operator string(LazyDirectoryPath path)
{
return path.Path;
}
// Check if the directory exists
public bool Exists()
{
return Directory.Exists(Path);
}
// Get DirectoryInfo object
public DirectoryInfo GetDirectoryInfo()
{
return new DirectoryInfo(Path);
}
}
// Example usage
public class Program
{
public static void Main()
{
// Create a base directory path
var appDataPath = new LazyDirectoryPath(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
true);
// Create a company directory under AppData
var companyPath = appDataPath.GetSubdirectory("MyCompany");
// Create an application directory under the company directory
var appPath = companyPath.GetSubdirectory("MyApplication");
// Create a logs directory
var logsPath = appPath.GetSubdirectory("Logs");
// Using the path will trigger creation of all directories in the chain
Console.WriteLine($"Logs directory: {logsPath}");
// You can also use it directly with file operations
string logFilePath = System.IO.Path.Combine(logsPath, "application.log");
File.WriteAllText(logFilePath, "Log entry: Application started");
// Alternative way to create nested paths in one go
var configPath = new LazyDirectoryPath(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
true,
"MyCompany", "MyApplication", "Config");
Console.WriteLine($"Config directory: {configPath}");
}
}
}