forked from merlos/iOS-Open-GPX-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPXFileInfo.swift
66 lines (56 loc) · 1.51 KB
/
GPXFileInfo.swift
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// GPXFileInfo.swift
// OpenGpxTracker
//
// Created by merlos on 23/09/2018.
//
import Foundation
///
/// A handy way of getting info of a GPX file.
///
/// It gets info like filename, modified date, filesize
///
class GPXFileInfo: NSObject {
/// file URL
var fileURL: URL = URL(fileURLWithPath: "")
/// Last time the file was modified
var modifiedDate: Date {
get {
return try! fileURL.resourceValues(forKeys: [.contentModificationDateKey]).contentModificationDate ?? Date.distantPast
}
}
/// modified date has a time ago string (for instance: 3 days ago)
var modifiedDatetimeAgo: String {
get {
return modifiedDate.timeAgo(numericDates: true)
}
}
/// File size in bytes
var fileSize: Int {
get {
return try! fileURL.resourceValues(forKeys: [.fileSizeKey]).fileSize ?? 0
}
}
/// File size as string in a more readable format (example: 10 KB)
var fileSizeHumanised: String {
get {
return fileSize.asFileSize()
}
}
/// The filename without extension
var fileName: String {
get {
return fileURL.deletingPathExtension().lastPathComponent
}
}
///
/// Initializes the object with the URL of the file to get info.
///
/// - Parameters:
/// - fileURL: the URL of the GPX file.
///
init(fileURL: URL) {
self.fileURL = fileURL
super.init()
}
}