浏览代码

添加获取网络文件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
     }
 }