Fusion.Build.BuildContext.GetTempFileName C# (CSharp) Method

GetTempFileName() public method

Generates temporary file name for given key with given extension and return full path to this file.
public GetTempFileName ( string key, string ext ) : string
key string unique key string value
ext string Desired extension with leading dot
return string
		public string GetTempFileName ( string key, string ext )
		{
			var fileName	=	ContentUtils.GetHashedFileName( key, ext );

			return Path.Combine( Options.FullTempDirectory, fileName );
		}