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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Apps/NesMiniApplication.cs')
-rw-r--r--Apps/NesMiniApplication.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Apps/NesMiniApplication.cs b/Apps/NesMiniApplication.cs
index c5c8c6f5..e5456cd2 100644
--- a/Apps/NesMiniApplication.cs
+++ b/Apps/NesMiniApplication.cs
@@ -639,7 +639,7 @@ namespace com.clusterrr.hakchi_gui
{
if (skipFiles != null && skipFiles.Contains(file.Name))
continue;
- string temppath = System.IO.Path.Combine(destDirName, file.Name);
+ string temppath = Path.Combine(destDirName, file.Name);
size += file.CopyTo(temppath, true).Length;
}
@@ -648,7 +648,7 @@ namespace com.clusterrr.hakchi_gui
{
foreach (DirectoryInfo subdir in dirs)
{
- string temppath = System.IO.Path.Combine(destDirName, subdir.Name);
+ string temppath = Path.Combine(destDirName, subdir.Name);
size += DirectoryCopy(subdir.FullName, temppath, copySubDirs, skipFiles);
}
}