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-25 17:52:19 +0300
committerverhoek <30193551+verhoek@users.noreply.github.com>2018-10-25 18:02:35 +0300
commita3cc49566df59d982f1d32879104fc365a7647f7 (patch)
tree9d33114724aaaeab873df1990d9d20c8da6d7ab5 /Duplicati/Library/Snapshots/NoSnapshotWindows.cs
parent7872018bbd573ec360d59302909e1478b82f7606 (diff)
Added additional wrappers for alphaFS implementations.
Diffstat (limited to 'Duplicati/Library/Snapshots/NoSnapshotWindows.cs')
-rw-r--r--Duplicati/Library/Snapshots/NoSnapshotWindows.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
index 34f7f1967..6646f3178 100644
--- a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
+++ b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
@@ -17,7 +17,6 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
using System;
using System.Collections.Generic;
-using Alphaleonis.Win32.Filesystem;
namespace Duplicati.Library.Snapshots
{
@@ -99,7 +98,7 @@ namespace Duplicati.Library.Snapshots
try { return base.ListFiles(localFolderPath); }
catch (System.IO.PathTooLongException) { }
- string[] tmp = Directory.GetFiles(SystemIOWindows.PrefixWithUNC(localFolderPath));
+ string[] tmp = IO_WIN.GetFiles(SystemIOWindows.PrefixWithUNC(localFolderPath));
string[] res = new string[tmp.Length];
for(int i = 0; i < tmp.Length; i++)
res[i] = SystemIOWindows.StripUNCPrefix(tmp[i]);
@@ -119,7 +118,7 @@ namespace Duplicati.Library.Snapshots
try { return base.ListFolders(localFolderPath); }
catch (System.IO.PathTooLongException) { }
- string[] tmp = Directory.GetDirectories(SystemIOWindows.PrefixWithUNC(localFolderPath));
+ string[] tmp = IO_WIN.GetDirectories(SystemIOWindows.PrefixWithUNC(localFolderPath));
string[] res = new string[tmp.Length];
for (int i = 0; i < tmp.Length; i++)
res[i] = SystemIOWindows.StripUNCPrefix(tmp[i]);