Skip to content

Basic: handle root checking on Windows more properly #51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Sources/TSCBasic/Path.swift
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,21 @@ public struct AbsolutePath: Hashable {
return isRoot ? self : AbsolutePath(_impl.dirname)
}

#if os(Windows)
internal var isDriveName: Bool {
return _impl.string.count == 2 &&
_impl.string.first!.isLetter && _impl.string.last! == ":"
}
#endif

/// True if the path is the root directory.
public var isRoot: Bool {
#if os(Windows)
return isDriveName ||
_impl.string.withCString(encodedAs: UTF16.self, PathCchIsRoot)
#else
return _impl.string.spm_only == "/"
#endif
}

/// Returns the absolute path with the relative path applied.
Expand Down