| 123456789101112131415161718192021222324252627282930313233343536 |
- //************************************************************************
- // author: yuzhengyang
- // date: 2018.3.27 - 2018.6.3
- // desc: 工具描述
- // Copyright (c) yuzhengyang. All rights reserved.
- //************************************************************************
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Azylee.Core.IOUtils.PathUtils
- {
- public class AppDirTool
- {
- public static string Get(string s, Dictionary<string, string> dictionary)
- {
- string path = s.Trim();
- string result = null;
- if (!string.IsNullOrWhiteSpace(path) && dictionary != null)
- {
- foreach (var dic in dictionary)
- {
- if (dic.Key != null && dic.Value != null && path.Contains(dic.Key))
- {
- result = path.Replace(dic.Key, dic.Value);
- break;
- }
- }
- }
- return result;
- }
- }
- }
|