Exemplo n.º 1
0
        private string GetPath(string[] splitObjectIds, int i, AttachmentEntityType attachmentEntityType)
        {
            if (i < 0)
            {
                throw new UserFriendlyException(L("InvalidObjectIdCode"), L("InvalidObjectIdCode_Detail"));
            }
            if (attachmentEntityType == null)
            {
                throw new UserFriendlyException(L("NotHaveAttachmentEntityTypeCode"), L("NotHaveAttachmentEntityTypeCode_Detail"));
            }
            var ObjectId = splitObjectIds[i];

            if (i == 0 && attachmentEntityType != null)
            {
                return(attachmentEntityType.Folder + "/" + ObjectId);
            }
            else
            {
                return(GetPath(splitObjectIds, --i, attachmentEntityType.ParentTypeFk) + attachmentEntityType.Folder + "/" + ObjectId);
            }
        }
Exemplo n.º 2
0
        private string GetAttachmentPath(string ObjectIds, AttachmentEntityType attachmentEntityType)
        {
            var splitObjectIds = ObjectIds.Split('.');

            return(GetPath(splitObjectIds, splitObjectIds.Length - 1, attachmentEntityType));
        }