Swift 路徑管理類:PathKit

jopen 9年前發布 | 18K 次閱讀 PathKit Apple Swift開發

PathKit 是 Swift 中超便捷的路徑操作。

Usage

let path = Path("/usr/bin/swift")

Joining paths

let path = Path("/usr/bin") + Path("swift")

Determine if a path is absolute

path.isAbsolute()

Determine if a path is relative

path.isRelative()

Determine if a file or directory exists at the path

path.exists()

Determine if a path is a directory

path.isDirectory()

Get an absolute path

let absolutePath = path.absolute()

Normalize a path

This cleans up any redundant..or.and double slashes in paths.

let normalizedPath = path.normalize()

Deleting a path

path.delete()

Moving a path

path.move(newPath)

Current working directory

Path.current
Path.current = "/usr/bin"

Changing the current working directory

path.chdir { // Path.current would be set to path during execution of this closure }

Children paths

path.children()

Reading

path.read()

Writing

path.write("Hello World!")

項目主頁:http://www.baiduhome.net/lib/view/home/1423039657232


 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!