Remove mkpath, add mkdir(.p)
This commit is contained in:
@@ -5,10 +5,18 @@ public extension Path {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Copies a file.
|
Copies a file.
|
||||||
|
|
||||||
|
try Path.root.join("bar").copy(to: Path.home/"foo")
|
||||||
|
// => "/Users/mxcl/foo"
|
||||||
|
|
||||||
- Note: `throws` if `to` is a directory.
|
- Note: `throws` if `to` is a directory.
|
||||||
- Parameter to: Destination filename.
|
- Parameter to: Destination filename.
|
||||||
- Parameter overwrite: If `true` and both `self` and `to` are files, overwrites `to`.
|
- Parameter overwrite: If `true` and both `self` and `to` are files, overwrites `to`.
|
||||||
- Note: If either `self` or `to are directories, `overwrite` is ignored.
|
- Note: If either `self` or `to are directories, `overwrite` is ignored.
|
||||||
|
- Note: Throws if `overwrite` is `false` yet `to` is *already* identical to
|
||||||
|
`self` because even though *Path.swift’s* policy is to noop if the desired
|
||||||
|
end result preexists, checking for this condition is too expensive a
|
||||||
|
trade-off.
|
||||||
- Returns: `to` to allow chaining
|
- Returns: `to` to allow chaining
|
||||||
- SeeAlso: `copy(into:overwrite:)`
|
- SeeAlso: `copy(into:overwrite:)`
|
||||||
*/
|
*/
|
||||||
@@ -24,15 +32,22 @@ public extension Path {
|
|||||||
/**
|
/**
|
||||||
Copies a file into a directory
|
Copies a file into a directory
|
||||||
|
|
||||||
If the destination does not exist, this function creates the directory first.
|
try Path.root.join("bar").copy(into: .home)
|
||||||
|
// => "/Users/mxcl/bar"
|
||||||
|
|
||||||
// Create ~/.local/bin, copy `ls` there and make the new copy executable
|
// Create ~/.local/bin, copy `ls` there and make the new copy executable
|
||||||
try Path.root.join("bin/ls").copy(into: Path.home.join(".local/bin").mkpath()).chmod(0o500)
|
try Path.root.join("bin/ls").copy(into: Path.home.join(".local/bin").mkdir(.p)).chmod(0o500)
|
||||||
|
|
||||||
|
If the destination does not exist, this function creates the directory first.
|
||||||
|
|
||||||
- Note: `throws` if `into` is a file.
|
|
||||||
- Parameter into: Destination directory
|
- Parameter into: Destination directory
|
||||||
- Parameter overwrite: If true overwrites any file that already exists at `into`.
|
- Parameter overwrite: If true overwrites any file that already exists at `into`.
|
||||||
- Returns: The `Path` of the newly copied file.
|
- Returns: The `Path` of the newly copied file.
|
||||||
|
- Note: `throws` if `into` is a file.
|
||||||
|
- Note: Throws if `overwrite` is `false` yet `to` is *already* identical to
|
||||||
|
`self` because even though *Path.swift’s* policy is to noop if the desired
|
||||||
|
end result preexists, checking for this condition is too expensive a
|
||||||
|
trade-off.
|
||||||
- SeeAlso: `copy(into:overwrite:)`
|
- SeeAlso: `copy(into:overwrite:)`
|
||||||
*/
|
*/
|
||||||
@discardableResult
|
@discardableResult
|
||||||
@@ -59,10 +74,18 @@ public extension Path {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Moves a file.
|
Moves a file.
|
||||||
- Note: `throws` if `to` is a directory.
|
|
||||||
|
try Path.root.join("bar").move(to: Path.home/"foo")
|
||||||
|
// => "/Users/mxcl/foo"
|
||||||
|
|
||||||
- Parameter to: Destination filename.
|
- Parameter to: Destination filename.
|
||||||
- Parameter overwrite: If true overwrites any file that already exists at `to`.
|
- Parameter overwrite: If true overwrites any file that already exists at `to`.
|
||||||
- Returns: `to` to allow chaining
|
- Returns: `to` to allow chaining
|
||||||
|
- Note: `throws` if `to` is a directory.
|
||||||
|
- Note: Throws if `overwrite` is `false` yet `to` is *already* identical to
|
||||||
|
`self` because even though *Path.swift’s* policy is to noop if the desired
|
||||||
|
end result preexists, checking for this condition is too expensive a
|
||||||
|
trade-off.
|
||||||
- SeeAlso: move(into:overwrite:)
|
- SeeAlso: move(into:overwrite:)
|
||||||
*/
|
*/
|
||||||
@discardableResult
|
@discardableResult
|
||||||
@@ -77,18 +100,21 @@ public extension Path {
|
|||||||
/**
|
/**
|
||||||
Moves a file into a directory
|
Moves a file into a directory
|
||||||
|
|
||||||
|
try Path.root.join("bar").move(into: .home)
|
||||||
|
// => "/Users/mxcl/bar"
|
||||||
|
|
||||||
If the destination does not exist, this function creates the directory first.
|
If the destination does not exist, this function creates the directory first.
|
||||||
|
|
||||||
- Note: `throws` if `into` is a file.
|
|
||||||
- Parameter into: Destination directory
|
- Parameter into: Destination directory
|
||||||
- Parameter overwrite: If true overwrites any file that already exists at `into`.
|
- Parameter overwrite: If true *overwrites* any file that already exists at `into`.
|
||||||
|
- Note: `throws` if `into` is a file.
|
||||||
- Returns: The `Path` of destination filename.
|
- Returns: The `Path` of destination filename.
|
||||||
- SeeAlso: move(into:overwrite:)
|
- SeeAlso: move(into:overwrite:)
|
||||||
*/
|
*/
|
||||||
@discardableResult
|
@discardableResult
|
||||||
func move(into: Path) throws -> Path {
|
func move(into: Path) throws -> Path {
|
||||||
if !into.exists {
|
if !into.exists {
|
||||||
try into.mkpath()
|
try into.mkdir(.p)
|
||||||
} else if !into.isDirectory {
|
} else if !into.isDirectory {
|
||||||
throw CocoaError.error(.fileWriteFileExists)
|
throw CocoaError.error(.fileWriteFileExists)
|
||||||
}
|
}
|
||||||
@@ -113,49 +139,37 @@ public extension Path {
|
|||||||
return try "".write(to: self)
|
return try "".write(to: self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Helper due to Linux Swift being incomplete.
|
/**
|
||||||
private func _foo(go: () throws -> Void) throws {
|
Creates the directory at this path.
|
||||||
#if !os(Linux)
|
- Note: Does not create any intermediary directories.
|
||||||
|
- Parameter options: Specify `mkdir(.p)` to create intermediary directories.
|
||||||
|
- Note: We do not error if the directory already exists (even without `.p`)
|
||||||
|
because *Path.swift* noops if the desired end result preexists.
|
||||||
|
- Returns: `self` to allow chaining.
|
||||||
|
*/
|
||||||
|
@discardableResult
|
||||||
|
func mkdir(_ options: MakeDirectoryOptions? = nil) throws -> Path {
|
||||||
do {
|
do {
|
||||||
try go()
|
let wid = options == .p
|
||||||
|
try FileManager.default.createDirectory(at: self.url, withIntermediateDirectories: wid, attributes: nil)
|
||||||
} catch CocoaError.Code.fileWriteFileExists {
|
} catch CocoaError.Code.fileWriteFileExists {
|
||||||
// noop
|
//noop (fails to trigger on Linux)
|
||||||
}
|
|
||||||
#else
|
|
||||||
do {
|
|
||||||
try go()
|
|
||||||
} catch {
|
} catch {
|
||||||
|
#if os(Linux)
|
||||||
let error = error as NSError
|
let error = error as NSError
|
||||||
guard error.domain == NSCocoaErrorDomain, error.code == CocoaError.Code.fileWriteFileExists.rawValue else {
|
guard error.domain == NSCocoaErrorDomain, error.code == CocoaError.Code.fileWriteFileExists.rawValue else {
|
||||||
throw error
|
throw error
|
||||||
}
|
}
|
||||||
}
|
#else
|
||||||
|
throw error
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Creates the directory at this path.
|
|
||||||
- Note: Does not create any intermediary directories.
|
|
||||||
- Returns: `self` to allow chaining.
|
|
||||||
*/
|
|
||||||
@discardableResult
|
|
||||||
func mkdir() throws -> Path {
|
|
||||||
try _foo {
|
|
||||||
try FileManager.default.createDirectory(at: self.url, withIntermediateDirectories: false, attributes: nil)
|
|
||||||
}
|
|
||||||
return self
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Creates the directory at this path.
|
|
||||||
- Note: Creates any intermediary directories, if required.
|
|
||||||
- Returns: `self` to allow chaining.
|
|
||||||
*/
|
|
||||||
@discardableResult
|
|
||||||
func mkpath() throws -> Path {
|
|
||||||
try _foo {
|
|
||||||
try FileManager.default.createDirectory(at: url, withIntermediateDirectories: true, attributes: nil)
|
|
||||||
}
|
|
||||||
return self
|
return self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Options for `Path.mkdir`
|
||||||
|
public enum MakeDirectoryOptions {
|
||||||
|
/// Creates intermediary directories. Works the same as mkdir -p.
|
||||||
|
case p
|
||||||
|
}
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ class PathTests: XCTestCase {
|
|||||||
try Path.mktemp {
|
try Path.mktemp {
|
||||||
for _ in 0...1 {
|
for _ in 0...1 {
|
||||||
try $0.join("a").mkdir()
|
try $0.join("a").mkdir()
|
||||||
try $0.join("b/c").mkpath()
|
try $0.join("b/c").mkdir(.p)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user