VirtualBox

source: vbox/trunk/src/libs/libtpms-0.10.0/tests/common

Last change on this file was 108932, checked in by vboxsync, 5 weeks ago

libtpms-0.10.0: Applied and adjusted our libtpms changes to 0.9.6. jiraref:VBP-1320

File size: 228 bytes
Line 
1# SPDX-License-Identifier: BSD-3-Clause
2
3# Get the size of a file in bytes
4#
5# @1: filename
6function get_filesize()
7{
8 if [[ "$(uname -s)" =~ (Linux|CYGWIN_NT-) ]]; then
9 stat -c%s "$1"
10 else
11 # OpenBSD
12 stat -f%z "$1"
13 fi
14}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette