Implemented the "folder" property for the File enumeration in the library target.

This commit is contained in:
2025-01-18 12:19:29 +01:00
parent 5f958c6f4c
commit 6fe45db4f1
2 changed files with 27 additions and 1 deletions
@@ -26,7 +26,13 @@ extension File {
var filePath: String {
switch self {
default: fileName
default: folder.path + fileName
}
}
var folder: Folder {
switch self {
default: .root
}
}