Avatar
Avatar
omochimetaru
@swift-5.10.1 @swift-6.0.3 import Foundation let baseDir = URL(fileURLWithPath: "src/swift") print("exists dir") print(URL(fileURLWithPath: "src/swift").path) print(URL(fileURLWithPath: "src/swift").absoluteURL) print(URL(fileURLWithPath: "src/swift").absoluteURL.path) print(URL(fileURLWithPath: "src/swift").absoluteURL.appendingPathComponent("/")) let doubleSlashDir = URL(fileURLWithPath: "src/swift").absoluteURL.appendingPathComponent("/") print("non exists dir") print(URL(fileURLWithPath: "src/java").path) print(URL(fileURLWithPath: "src/java").absoluteURL) print(URL(fileURLWithPath: "src/java").absoluteURL.path) print(URL(fileURLWithPath: "src/java").absoluteURL.appendingPathComponent("/")) let singleSlashDir = URL(fileURLWithPath: "src/java").absoluteURL.appendingPathComponent("/") let filePath1 = URL(fileURLWithPath: "common.js", relativeTo: doubleSlashDir) let filePath2 = URL(fileURLWithPath: "common.js", relativeTo: singleSlashDir) print("===") print(filePath1) print(filePath1.standardized) print(filePath1.standardized.pathComponents) print("===") print(filePath2) print(filePath2.standardized) print(filePath2.standardized.pathComponents)
execution timeout with no output