markus / SmartUpdate / App.xaml.cs @ f19ebe30
이력 | 보기 | 이력해설 | 다운로드 (664 Bytes)
1 | c4a4d59c | ljiyeon | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Configuration; |
||
4 | using System.Data; |
||
5 | f7e7a61a | ljiyeon | using System.IO; |
6 | c4a4d59c | ljiyeon | using System.Linq; |
7 | using System.Threading.Tasks; |
||
8 | using System.Windows; |
||
9 | |||
10 | namespace SmartUpdate |
||
11 | { |
||
12 | /// <summary> |
||
13 | /// App.xaml에 대한 상호 작용 논리 |
||
14 | /// </summary> |
||
15 | public partial class App : Application |
||
16 | { |
||
17 | f7e7a61a | ljiyeon | /// <summary> |
18 | /// Application Data Folder |
||
19 | /// </summary> |
||
20 | public static string AppDataFolder |
||
21 | { |
||
22 | get |
||
23 | { |
||
24 | return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MARKUS"); |
||
25 | } |
||
26 | } |
||
27 | c4a4d59c | ljiyeon | } |
28 | } |