Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodFTPD
- Methods
- Properties
- Authentication
- BindIP
- BindIPType
- Certificate
- DirFormat
- Encryption
- EncryptionList
- FileLocking
- FIPS
- ForceUTF8
- GoodbyeMessage
- GreetingMessage
- HMacList
- HostKeyList
- KeyExchangeList
- MaxDataPort
- MinDataPort
- MonitorTransfers
- MyHostname
- MyIP
- Notification
- PasvPort
- Port
- Protocol
- Secure
- ServerName
- SFTPVersion
- Status
- StrictDataIP
- Threads
- Timeout
- UseIPv6
- Users
- Version
- VirtualFiles
- VirtualFolders
- Events
- wodFTPDNotify
- FtpUser
- FtpUsers
- VirtualFile
- VirtualFiles
- VirtualFolder
- VirtualFolders
- How to get support?
- Technical information
- Fast notifications interface
- Error list
FilesUpload property
Holds total number of files user uploaded.
Type
A Long value.Syntax
- Basic
object.FilesUpload [= value]
The FilesUpload(object,value) syntax has these parts:
The FilesUpload(object,value) syntax has these parts:
object | An expression evaluating to an object of type FtpUser. |
value | A Long value. |
Remarks
FilesUpload property holds total number of files user successfully uploaded in this session - as soon as he reconnects, this property will be reset.This property is increased just before TransferComplete event is fired, and only if file transfer is successful. If you want it to be increased also when transfer is unsuccessful, you can do something like this from inside TransferComplete event:
Private Sub FtpD_TransferComplete(ByVal User As wodFTPDComLib.IFtpUser, ByVal Successful As Boolean)
If Not Successful Then
If User.State = Downloading Then User.FilesDownload = User.FilesDownload + 1
If User.State = Uploading Then User.FilesUpload = User.FilesUpload + 1
End If
End Sub