You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.cpp

64 lines
2.1 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <AzCore/IO/SystemFile.h>
#include <AzFramework/StringFunc/StringFunc.h>
#include <AzFramework/API/ApplicationAPI.h>
#include <SceneAPI/SceneCore/Utilities/FileUtilities.h>
namespace AZ
{
namespace SceneAPI
{
namespace Utilities
{
AZStd::string FileUtilities::CreateOutputFileName(const AZStd::string& groupName, const AZStd::string& outputDirectory, const AZStd::string& extension)
{
AZStd::string result;
if (!AzFramework::StringFunc::Path::ConstructFull(outputDirectory.c_str(), groupName.c_str(), extension.c_str(), result, true))
{
return "";
}
return result;
}
bool FileUtilities::EnsureTargetFolderExists(const AZStd::string& path)
{
AZStd::string folder;
if (!AzFramework::StringFunc::Path::GetFullPath(path.c_str(), folder))
{
return false;
}
if (!IO::SystemFile::Exists(folder.c_str()))
{
if (!IO::SystemFile::CreateDir(folder.c_str()))
{
return false;
}
}
return true;
}
AZStd::string FileUtilities::GetRelativePath(const AZStd::string& path, const AZStd::string& rootPath)
{
AZStd::string outputPath(path);
EBUS_EVENT(AzFramework::ApplicationRequests::Bus, NormalizePath, outputPath);
if (outputPath.compare(0, rootPath.size(), rootPath) == 0)
{
size_t offset = rootPath[rootPath.length() - 1] == '/' ? 1 : 0;
AzFramework::StringFunc::RKeep(outputPath, rootPath.size() - offset);
}
return outputPath;
}
}
}
}