32 lines
837 B
C#
32 lines
837 B
C#
using System.IO;
|
|
|
|
namespace AssortHelpers.Helpers
|
|
{
|
|
public static class DiskHelpers
|
|
{
|
|
public static void CreateDirIfDoesntExist(string path)
|
|
{
|
|
if (!Directory.Exists($"{path}"))
|
|
{
|
|
//create dump dir
|
|
Directory.CreateDirectory($"{path}");
|
|
}
|
|
}
|
|
|
|
public static string[] GetJsonFiles(string path)
|
|
{
|
|
return Directory.GetFiles(path, "*.json", SearchOption.AllDirectories);
|
|
}
|
|
|
|
public static string CreateWorkingFolder(string folderName)
|
|
{
|
|
var workingPath = Directory.GetCurrentDirectory();
|
|
// create input folder
|
|
var inputPath = $"{workingPath}//{folderName}";
|
|
CreateDirIfDoesntExist(inputPath);
|
|
|
|
return inputPath;
|
|
}
|
|
}
|
|
}
|