CSharpUtils.VirtualFileSystem.Local.LocalFileSystem.RealPath C# (CSharp) Method

RealPath() private method

private RealPath ( String Path ) : String
Path String
return String
		protected String RealPath(String Path)
		{
			if (Environment.OSVersion.Platform == PlatformID.Unix)
			{
				return CombinePath(RootPath, Path);
			}
			return CombinePath(RootPath, Path).Replace('/', '\\');
		}