39 lines
No EOL
1 KiB
C#
39 lines
No EOL
1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace GraalGmapGenerator
|
|
{
|
|
public static class GmapPropertyValidators
|
|
{
|
|
public static bool IsValidDimension(string input)
|
|
{
|
|
return int.TryParse(input, out int dimension) && dimension > 0;
|
|
}
|
|
|
|
public static bool IsValidYesNoInput(string input)
|
|
{
|
|
var inputLowered = input.ToLower();
|
|
if (inputLowered == "yes" || inputLowered == "y")
|
|
return true;
|
|
if (inputLowered == "no" || inputLowered == "n")
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
public static bool IsValidDirectory(string input)
|
|
{
|
|
char[] inputChars = input.ToCharArray();
|
|
char[] fsInvalidPathChars = Path.GetInvalidPathChars();
|
|
foreach (char inputChar in inputChars)
|
|
{
|
|
if (fsInvalidPathChars.Contains(inputChar))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
} |