Example #1
0
        private FilePathAbsolute CreateTmpDir(string s)
        {
            string tmpDirectoryPath = Path.Combine(_hostEnviroment.GetTempPath(), s + Path.GetRandomFileName());

            _fs.Directory.CreateDirectory(tmpDirectoryPath);
            return(new FilePathAbsolute(tmpDirectoryPath));
        }