Exemplo n.º 1
0
        public string NormalizeStoragePath()
        {
            var storagePath = StoragePath?.Trim('/') ?? string.Empty;

            if (storagePath.Length > 0)
            {
                storagePath = storagePath + "/";
            }

            return(storagePath);
        }