mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-20 04:24:41 +00:00
11 lines
196 B
Swift
11 lines
196 B
Swift
import Foundation
|
|
|
|
public func fileSize(_ path: String) -> Int? {
|
|
var value = stat()
|
|
if stat(path, &value) == 0 {
|
|
return Int(value.st_size)
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|