SwiftUI | ファイルのURLからファイル名/拡張子/ディレクトリを取得する方法
SwiftUIでファイルのURLからファイル名/拡張子/ディレクトリを取得する方法を説明する。◾結論 以下のように記述する。
let ファイル名 = ファイルのURL.lastPathComponent
let ファイル拡張子 = ファイルのURL.pathExtension
let ファイル名のパーセントエンコード = fileName
.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed)!
let ファイルディレクトリ = ファイルのURL.path()
.replacingOccurrences(of: ファイル名のパーセントエンコード, with: "")