ソースを参照

Merge pull request #20 from kborowinski/master

Don't throw error when 'Force' switch is specified
tags/4.2.4
Raimund Andrée [MSFT] 6年前
committed by GitHub
コミット
bb96a6bddb
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
2個のファイルの変更5行の追加5行の削除
  1. +2
    -2
      NTFSSecurity/ItemCmdlets/CopyItem2.cs
  2. +3
    -3
      NTFSSecurity/ItemCmdlets/MoveItem2.cs

+ 2
- 2
NTFSSecurity/ItemCmdlets/CopyItem2.cs ファイルの表示

@@ -85,7 +85,7 @@ namespace NTFSSecurity
actualDestination = destination;
}

if (File.Exists(actualDestination))
if (!force & File.Exists(actualDestination))
{
WriteError(new ErrorRecord(new AlreadyExistsException(), "DestinationFileAlreadyExists", ErrorCategory.ResourceExists, actualDestination));
return;
@@ -129,4 +129,4 @@ namespace NTFSSecurity
base.EndProcessing();
}
}
}
}

+ 3
- 3
NTFSSecurity/ItemCmdlets/MoveItem2.cs ファイルの表示

@@ -85,7 +85,7 @@ namespace NTFSSecurity
actualDestination = destination;
}

if (File.Exists(actualDestination))
if (!force & File.Exists(actualDestination))
{
WriteError(new ErrorRecord(new AlreadyExistsException(), "DestinationFileAlreadyExists", ErrorCategory.ResourceExists, actualDestination));
return;
@@ -97,7 +97,7 @@ namespace NTFSSecurity
{
if (ShouldProcess(resolvedPath, "Move File"))
{
((FileInfo)item).MoveTo(actualDestination, MoveOptions.CopyAllowed, PathFormat.RelativePath);
((FileInfo)item).MoveTo(actualDestination, force ? MoveOptions.ReplaceExisting : MoveOptions.CopyAllowed, PathFormat.RelativePath);
WriteVerbose(string.Format("File '{0}' moved to '{0}'", resolvedPath, destination));
}
}
@@ -105,7 +105,7 @@ namespace NTFSSecurity
{
if (ShouldProcess(resolvedPath, "Move Directory"))
{
((DirectoryInfo)item).MoveTo(actualDestination, MoveOptions.CopyAllowed, PathFormat.RelativePath);
((DirectoryInfo)item).MoveTo(actualDestination, force ? MoveOptions.ReplaceExisting : MoveOptions.CopyAllowed, PathFormat.RelativePath);
WriteVerbose(string.Format("Directory '{0}' moved to '{0}'", resolvedPath, destination));
}
}


読み込み中…
キャンセル
保存