How do i find the file size of a particular file?
Last edited by dinosaur_uk; Feb 1st, 2005 at 07:13 AM.
found it .. VB Code: Dim fi As New IO.FileInfo("filename.txt") MessageBox.Show(fi.Length)
Dim fi As New IO.FileInfo("filename.txt") MessageBox.Show(fi.Length)
Forum Rules