7
7
//
8
8
#if !os(Windows)
9
9
10
+ #if canImport(Android)
11
+ import Android
12
+ #endif
13
+
10
14
#if os(Android) && (arch(i386) || arch(arm)) // struct stat.st_mode is UInt32
11
15
internal func & ( left: UInt32 , right: mode_t ) -> mode_t {
12
16
return mode_t ( left) & right
13
17
}
14
- #elseif os(Android)
15
- internal func & ( left: mode_t , right: Int32 ) -> mode_t {
16
- return left & mode_t ( right)
17
- }
18
18
#endif
19
19
20
20
#if os(WASI)
@@ -413,7 +413,7 @@ extension FileManager {
413
413
if !parent. isEmpty && !fileExists( atPath: parent, isDirectory: & isDir) {
414
414
try createDirectory ( atPath: parent, withIntermediateDirectories: true , attributes: attributes)
415
415
}
416
- if mkdir ( pathFsRep, mode_t ( S_IRWXU) | mode_t ( S_IRWXG) | mode_t ( S_IRWXO) ) != 0 {
416
+ if mkdir ( pathFsRep, S_IRWXU | S_IRWXG | S_IRWXO) != 0 {
417
417
let posixError = errno
418
418
if posixError == EEXIST && fileExists ( atPath: path, isDirectory: & isDir) && isDir. boolValue {
419
419
// Continue; if there is an existing file and it is a directory, that is still a success.
@@ -432,7 +432,7 @@ extension FileManager {
432
432
throw _NSErrorWithErrno ( EEXIST, reading: false , path: path)
433
433
}
434
434
} else {
435
- if mkdir ( pathFsRep, mode_t ( S_IRWXU) | mode_t ( S_IRWXG) | mode_t ( S_IRWXO) ) != 0 {
435
+ if mkdir ( pathFsRep, S_IRWXU | S_IRWXG | S_IRWXO) != 0 {
436
436
throw _NSErrorWithErrno ( errno, reading: false , path: path)
437
437
} else if let attr = attributes {
438
438
try self . setAttributes ( attr, ofItemAtPath: path)
@@ -807,8 +807,13 @@ extension FileManager {
807
807
let ps = UnsafeMutablePointer< UnsafeMutablePointer< Int8>?> . allocate( capacity: 2 )
808
808
ps. initialize ( to: UnsafeMutablePointer ( mutating: fsRep) )
809
809
ps. advanced ( by: 1 ) . initialize ( to: nil )
810
- let stream = ps. withMemoryRebound ( to: UnsafeMutablePointer< CChar> . self , capacity: 2 ) {
811
- fts_open ( $0, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil )
810
+ let stream = ps. withMemoryRebound ( to: UnsafeMutablePointer< CChar> . self , capacity: 2 ) { rebound_ps in
811
+ #if canImport(Android)
812
+ let arg = rebound_ps
813
+ #else
814
+ let arg = ps
815
+ #endif
816
+ return fts_open ( arg, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil )
812
817
}
813
818
ps. deinitialize ( count: 2 )
814
819
ps. deallocate ( )
@@ -1177,8 +1182,13 @@ extension FileManager {
1177
1182
defer { ps. deallocate ( ) }
1178
1183
ps. initialize ( to: UnsafeMutablePointer ( mutating: fsRep) )
1179
1184
ps. advanced ( by: 1 ) . initialize ( to: nil )
1180
- return ps. withMemoryRebound ( to: UnsafeMutablePointer< CChar> . self , capacity: 2 ) {
1181
- fts_open ( $0, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil )
1185
+ return ps. withMemoryRebound ( to: UnsafeMutablePointer< CChar> . self , capacity: 2 ) { rebound_ps in
1186
+ #if canImport(Android)
1187
+ let arg = rebound_ps
1188
+ #else
1189
+ let arg = ps
1190
+ #endif
1191
+ return fts_open ( arg, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil )
1182
1192
}
1183
1193
}
1184
1194
if _stream == nil {
0 commit comments