소스 검색

添加获取网络文件FileItem方法

lcl 1 년 전
부모
커밋
cb6068ca52
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. 12 0
      AppStart/PublicFunction.cs

+ 12 - 0
AppStart/PublicFunction.cs

@@ -5,6 +5,7 @@ using System.Data;
 using System.Text.RegularExpressions;
 using MySystem.Models;
 using Library;
+using Aop.Api.Util;
 
 namespace MySystem
 {
@@ -76,6 +77,17 @@ namespace MySystem
             return textContent;
         }
 
+        public static FileItem GetNetFileItem(string url)
+        {
+            string fileName = url;
+            if(fileName.Contains("/"))
+            {
+                fileName = fileName.Substring(fileName.LastIndexOf("/") + 1);
+            }
+            FileItem item = new FileItem(fileName, GetNetFileData(url));
+            return item;
+        }
+
         #endregion
     }
 }