CmisSync.Lib.Database.Database.DenormalizeRemotePath C# (CSharp) 메소드

DenormalizeRemotePath() 개인적인 메소드

Denormalizes a remote path from the normalized one to a remote path.
private DenormalizeRemotePath ( string path ) : string
path string normalized remote path
리턴 string
        private string DenormalizeRemotePath(string path)
        {
            if (null == path)
            {
                return null;
            }

            if (Path.IsPathRooted(path))
            {
                return path;
            }

            return Path.Combine(remotePathPrefix, path);
        }