Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.System.Storage / Storage / DirectoryType.cs
1 /*
2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 namespace Tizen.System
18 {
19     /// <summary>
20     /// Enumeration for the DirectoryType storage.
21     /// </summary>
22     /// <since_tizen> 3 </since_tizen>
23     public enum DirectoryType
24     {
25         /// <summary>
26         /// Image directory.
27         /// </summary>
28         /// <since_tizen> 3 </since_tizen>
29         Images = Interop.Storage.DirectoryType.Images,
30         /// <summary>
31         /// Sounds directory.
32         /// </summary>
33         /// <since_tizen> 3 </since_tizen>
34         Sounds = Interop.Storage.DirectoryType.Sounds,
35         /// <summary>
36         /// Videos directory.
37         /// </summary>
38         /// <since_tizen> 3 </since_tizen>
39         Videos = Interop.Storage.DirectoryType.Videos,
40         /// <summary>
41         /// Camera directory.
42         /// </summary>
43         /// <since_tizen> 3 </since_tizen>
44         Camera = Interop.Storage.DirectoryType.Camera,
45         /// <summary>
46         /// Downloads directory.
47         /// </summary>
48         /// <since_tizen> 3 </since_tizen>
49         Downloads = Interop.Storage.DirectoryType.Downloads,
50         /// <summary>
51         /// Music directory.
52         /// </summary>
53         /// <since_tizen> 3 </since_tizen>
54         Music = Interop.Storage.DirectoryType.Music,
55         /// <summary>
56         /// Documents directory.
57         /// </summary>
58         /// <since_tizen> 3 </since_tizen>
59         Documents = Interop.Storage.DirectoryType.Documents,
60         /// <summary>
61         /// Others directory.
62         /// </summary>
63         /// <since_tizen> 3 </since_tizen>
64         Others = Interop.Storage.DirectoryType.Others,
65         /// <summary>
66         /// System ringtones directory is only available for an internal storage.
67         /// </summary>
68         /// <since_tizen> 3 </since_tizen>
69         Ringtones = Interop.Storage.DirectoryType.Ringtones,
70     }
71 }