29 lines
726 B
C#
29 lines
726 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KlassenBIB
|
|
{
|
|
public class SchachtAnbindung : Sanieren
|
|
{
|
|
public SchachtAnbindung()
|
|
{
|
|
Verzeichnispfad = "Schachtanbindung";
|
|
}
|
|
|
|
public override string CheckVerzeichnisse(string projektpfad)
|
|
{
|
|
string path = Path.Combine(projektpfad, PfadZurSan);
|
|
if (!Directory.Exists(path)) Directory.CreateDirectory(path);
|
|
|
|
string mypath = Path.Combine(path, Verzeichnispfad);
|
|
if (!Directory.Exists(mypath)) Directory.CreateDirectory(mypath);
|
|
|
|
return mypath;
|
|
}
|
|
}
|
|
}
|