markus / ConvertService / ServiceBase / Markus.Service.Extensions / Exntensions / Sytem.IO.cs @ b92f142f
이력 | 보기 | 이력해설 | 다운로드 (704 Bytes)
1 | 06f13e11 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | |||
8 | namespace Markus.Service.Extensions |
||
9 | { |
||
10 | public static class IO |
||
11 | { |
||
12 | /// <summary> |
||
13 | /// System.IO.PathTooLongException 방지를 위해서 생성 |
||
14 | /// </summary> |
||
15 | /// <param name="path"></param> |
||
16 | /// <returns></returns> |
||
17 | public static bool FileExists(string path) |
||
18 | { |
||
19 | bool result = false; |
||
20 | |||
21 | if (path.Length < 260) |
||
22 | { |
||
23 | if (System.IO.File.Exists(path)) |
||
24 | { |
||
25 | result = true; |
||
26 | } |
||
27 | } |
||
28 | |||
29 | return result; |
||
30 | } |
||
31 | |||
32 | } |
||
33 | } |