Fusion.Build.BuildContext.GetTempFileName C# (CSharp) 메소드

GetTempFileName() 공개 메소드

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
리턴 string
		public string GetTempFileName ( string key, string ext )
		{
			var fileName	=	ContentUtils.GetHashedFileName( key, ext );

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