Generell wird kein doc mehr erzeugt

prüfung ob uv anlage erreichbar ist
This commit is contained in:
HuskyTeufel
2022-03-25 13:42:15 +01:00
parent dea733183e
commit 3a51ada9d6
5 changed files with 36 additions and 4 deletions

View File

@@ -200,7 +200,8 @@ namespace SanSystem
if (Global.Instance.AnlageType == AcceptedCSVFormats.BLUELIGHT)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.InitialDirectory = @"\\192.168.2.248";
if(Global.CheckNetworkAnlageAvaible())
openFileDialog.InitialDirectory = @"\\192.168.2.248";
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
string source = openFileDialog.FileName;
@@ -218,7 +219,7 @@ namespace SanSystem
DownloadFromUV();
}
}
}
}
private void ListFiles(FtpClient client, string directory)
{