WFSI: Implement patch install finalization.

This commit is contained in:
Pierre Bourdon
2017-08-17 16:45:39 +02:00
committed by Léo Lam
parent 76bbfbb511
commit a641609857
3 changed files with 24 additions and 6 deletions

View File

@ -156,8 +156,9 @@ bool DeleteDirRecursively(const std::string& directory);
// Returns the current directory
std::string GetCurrentDir();
// Create directory and copy contents (does not overwrite existing files)
void CopyDir(const std::string& source_path, const std::string& dest_path);
// Create directory and copy contents (optionally overwrites existing files)
void CopyDir(const std::string& source_path, const std::string& dest_path,
bool destructive = false);
// Set the current directory to given directory
bool SetCurrentDir(const std::string& directory);