Skip to content

PLFile v1.0.3

Choose a tag to compare

@jihoonahn jihoonahn released this 25 Jun 03:50
· 72 commits to main since this release

What's Changed

PLFile Path Can be expressed in text literal.

let file = try! folder.createFile(at: "test.swift")

Same as the code below

let path = Path("test.swift")
let file = try! folder.createFile(at: path)