NHibernate.Lob.External.FileSystemCasConnection.CreateFolder C# (CSharp) Method

CreateFolder() private method

private CreateFolder ( byte contentIdentifier ) : void
contentIdentifier byte
return void
		private void CreateFolder(byte[] contentIdentifier)
		{
			string path = Path.Combine(this.path, contentIdentifier[0].ToString("x2"));
			if (!Directory.Exists(path))
				Directory.CreateDirectory(path);
			path = Path.Combine(path, contentIdentifier[1].ToString("x2"));
			if (!Directory.Exists(path))
				Directory.CreateDirectory(path);
		}