///////////////////////////////////////////////////////////////////////////////
//  FileSystem.h

#pragma once

#include <string>

namespace filesystem {

bool	CreateFolder(const std::string& FolderName);
bool	DeleteFolder(const std::string& FolderName);

bool	DelFile(const std::string& FileName);

bool	CopyFolder(const std::string& DestFolderName, const std::string& SrcFolderName);
bool	CopyOneFile(const std::string& DestFileName, const std::string& SrcFileName);

std::string		GetCurrentFolderName();

}

