Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Determine file length from a file picked from a listbox

Status
Not open for further replies.

PRPhx

MIS
Jul 4, 2005
747
US
I am working on a copy application in which I can choose one or more files from a listbox and copy them from a network share to my local pc. The file(s) I am coping are large (approx 1 GIG - these are zipped production SQL Server backup files).

What I need to do, is determine the length of each file that has been picked for copy. How do I do this??? Everything I try either 1) Gives the number of files in my list box or 2) Gives an "Object reference not set to an instance of an object."

I want to use the file size as the max part of a progress bar, so I know how much of the file has been copied over the network.

Thanks for your help.

I have tried the following:

Dim x As Integer
' Make a reference to a directory.
Dim di1 As New DirectoryInfo("\\SCANSERVER\f$\SQL_Backups")
'' Get a reference to each file in that directory.
Dim fiArr As FileInfo() = di1.GetFiles()
'' Display the names and sizes of the files.
Dim f As FileInfo

x = f.Length
MsgBox("X is : " & x, MsgBoxStyle.OKOnly, "")

Not sure what I need to be doing.
 
You could try something like:

Code:
    Dim x As Long
    ' Make a reference to a directory.
    Dim di1 As New IO.DirectoryInfo("\\SCANSERVER\f$\SQL_Backups")
    '' Get a reference to each file in that directory.
    Dim fiArr As IO.FileInfo() = di1.GetFiles()
    '' Display the names and sizes of the files.
    For Each f As IO.FileInfo In fiArr
      x = f.Length
      MsgBox(f.Name & " is : " & x & " bytes", MsgBoxStyle.OKOnly, "")
    Next


Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top