Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorverhoek <30193551+verhoek@users.noreply.github.com>2018-10-30 15:38:25 +0300
committerverhoek <30193551+verhoek@users.noreply.github.com>2018-10-30 15:38:25 +0300
commita90f577624e2d1729634cd8b84c09495ac031006 (patch)
treeefe0a910567b91db400eef7adb8ac28f4ca800cf /Duplicati/License
parent215334376b25e1a3fb024df231af68ff05a8f92d (diff)
Redirected GetDirectories calls to Library.IO's version.
Diffstat (limited to 'Duplicati/License')
-rw-r--r--Duplicati/License/Duplicati.License.csproj10
-rw-r--r--Duplicati/License/LicenseReader.cs8
2 files changed, 15 insertions, 3 deletions
diff --git a/Duplicati/License/Duplicati.License.csproj b/Duplicati/License/Duplicati.License.csproj
index 3aff3525b..af6ac8d0c 100644
--- a/Duplicati/License/Duplicati.License.csproj
+++ b/Duplicati/License/Duplicati.License.csproj
@@ -426,4 +426,14 @@
<Folder Include="licenses\mozroots\" />
<Folder Include="licenses\TlsTest\" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\Library\IO\Duplicati.Library.IO.csproj">
+ <Project>{D63E53E4-A458-4C2F-914D-92F715F58ACF}</Project>
+ <Name>Duplicati.Library.IO</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\Library\Utility\Duplicati.Library.Utility.csproj">
+ <Project>{DE3E5D4C-51AB-4E5E-BEE8-E636CEBFBA65}</Project>
+ <Name>Duplicati.Library.Utility</Name>
+ </ProjectReference>
+ </ItemGroup>
</Project> \ No newline at end of file
diff --git a/Duplicati/License/LicenseReader.cs b/Duplicati/License/LicenseReader.cs
index 01ad385bf..ebc48fe13 100644
--- a/Duplicati/License/LicenseReader.cs
+++ b/Duplicati/License/LicenseReader.cs
@@ -20,7 +20,9 @@
using System;
using System.Collections.Generic;
using System.Text;
-
+using Duplicati.Library.IO;
+using Duplicati.Library.Utility;
+
namespace Duplicati.License
{
/// <summary>
@@ -49,8 +51,8 @@ namespace Duplicati.License
public static List<LicenseEntry> ReadLicenses(string basefolder)
{
List<LicenseEntry> res = new List<LicenseEntry>();
-
- string[] folders = System.IO.Directory.GetDirectories(basefolder);
+
+ string[] folders = SystemIO.IO_OS(Utility.IsClientWindows).GetDirectories(basefolder);
Array.Sort(folders);
foreach (string folder in folders)