Re: [Gambas-user] Size Multiple Files with FileProperties

2016-02-16 Thread Charlie
*This code may help. *Public Sub Form_Open() Dim sPath As String = User.Home &/ "Desktop" Dim sFileList As String[] Dim sTemp As String Dim stStat As Stat sFileList = Dir(sPath) For Each sTemp In sFileList stStat = Stat(sPath &/ sTemp) Print sTemp & Space(50 - Len(sTemp)) & " Last Modified " &

Re: [Gambas-user] Size Multiple Files with FileProperties

2016-02-13 Thread Benoît Minisini
Le 12/02/2016 19:09, herberth guzman a écrit : > Salut Benoit > > Benoit consultation. > > If I want to get the size of a file with FileProperties the code is: > FileProperties1.Path=User.Home &/ "test.png" > > But I need to get the size of several Selected Files in a FileView. > Is this possible.?

[Gambas-user] Size Multiple Files with FileProperties

2016-02-12 Thread herberth guzman
Salut Benoit Benoit consultation. If I want to get the size of a file with FileProperties the code is: FileProperties1.Path=User.Home &/ "test.png" But I need to get the size of several Selected Files in a FileView. Is this possible.? I tried with the following code: But it is not possible.