fullPathFromDir function
Attaches a relativePath to a directoryPath
Implementation
String fullPathFromDir({required String relativePath, required String directoryPath}) => join(
directoryPath,
stripBeginningPathSeparatorPath(relativePath),
);