This commit is contained in:
2019-09-30 16:18:53 +02:00
parent 7d884d7cba
commit 53f2a0666b
70 changed files with 2984 additions and 197 deletions

21
Pilz.Updating/General.vb Normal file
View File

@@ -0,0 +1,21 @@
Imports System.IO
Public Module General
Public ReadOnly Property MyTempPath As String
Get
Static p As String = String.Empty
If String.IsNullOrEmpty(p) Then
p = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Pilz.Updating")
If Not Directory.Exists(p) Then
Directory.CreateDirectory(p)
End If
End If
Return p
End Get
End Property
End Module