Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kpfaulkner/azurecopy
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfaulkner committed Dec 6, 2016
2 parents cc911db + 38719ab commit 0c24050
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions azurecopycommand/Program.cs
Expand Up @@ -675,6 +675,11 @@ static void DoNormalCopy()
}

outputHandler.WriteBlob(destContainerName, destBlobName, inputBlob, ConfigHelper.ParallelFactor, ConfigHelper.ChunkSizeInMB);

if (inputBlob.BlobSavedToFile)
{
if (File.Exists(inputBlob.FilePath)) File.Delete(inputBlob.FilePath);
}
}
}
}
Expand Down

0 comments on commit 0c24050

Please sign in to comment.