using System.IO; namespace mRemoteNGTests.TestHelpers { public class FileTestHelpers { public static void DeleteTestFile(string path) { if (File.Exists(path)) File.Delete(path); } public static void DeleteFilesInDirectory(string directory, string fileMatching) { var filesToDelete = Directory.GetFiles(directory, fileMatching, SearchOption.TopDirectoryOnly); foreach (var file in filesToDelete) if (File.Exists(file)) File.Delete(file); } public static string NewTempFilePath() { var newPath = Path.Combine(GetTestSpecificTempDirectory(), Path.GetRandomFileName()); var folderPath = Path.GetDirectoryName(newPath); if (!Directory.Exists(folderPath)) Directory.CreateDirectory(folderPath); return newPath; } /// /// Gets a testing directory that should be unique for a /// particular mRemoteNG test. /// public static string GetTestSpecificTempDirectory() { return Path.Combine(Path.GetTempPath(), "mRemoteNGTests", Path.GetRandomFileName()); } } }