D Davef28 Registered User. Local time Today, 23:19 Joined Feb 6, 2002 Messages 51 Aug 9, 2005 #1 Can i obtain the filesize of a file via VBA zt all ? Thanks
C chacal Registered User. Local time Today, 18:19 Joined Jun 1, 2005 Messages 40 Aug 9, 2005 #2 Hi, You can use this method: Code: Dim MySize As Long MySize = FileLen(FilePath) ' Returns file length (bytes). Hope this will help!
Hi, You can use this method: Code: Dim MySize As Long MySize = FileLen(FilePath) ' Returns file length (bytes). Hope this will help!