Created
December 19, 2020 00:48
-
-
Save thoriqmacto/418740017e25816e95d9683c7db35b73 to your computer and use it in GitHub Desktop.
[VBA] Get FileSize of file based on supplied path. Output in "bytes".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function FileSize(path As String) As Variant | |
| FileSize = FileLen(path) | |
| End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment