SenseNet.ContentRepository.ImportContext.UnescapeFileName C# (CSharp) Method

UnescapeFileName() public method

public UnescapeFileName ( string path ) : string
path string
return string
		public string UnescapeFileName(string path)
		{
			return path.Replace("$amp;", "&");

		}
	}