mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 04:00:54 +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
|
|
}
|
|
}
|