aboutsummaryrefslogtreecommitdiff
path: root/src/PhotoPath.cs
blob: 71c3bdfe72fd1241d2a0a3fafd013cde2c2e0bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.IO;

namespace iPhotoExtractor
{
    enum PhotoPathType
    {
        Original,
        Modified,
        Other
    }

    class PhotoPath
    {
        public PhotoPathType PathType { get; }
        public string RelativePath { get; }
        
        public PhotoPath(string relativePath)
        {
            RelativePath = relativePath;
            string[] parts = relativePath.Split(Path.DirectorySeparatorChar);

            switch(parts[0].ToLower())
            {
                case "originals":
                    PathType = PhotoPathType.Original;
                    break;

                case "modified":
                    PathType = PhotoPathType.Modified;
                    break;

                default:
                    PathType = PhotoPathType.Other;
                    break;
            }
        }
    }
}