Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Client.SFTP
- Methods
- Properties
- Authentication
- Blocking
- BufferSize
- Compression
- Encryption
- EncryptionList
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- LastError
- ListItem
- LocalPath
- Login
- MaxTransferRate
- Password
- Port
- PrivateKey
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- RemotePath
- Resume
- State
- Timeout
- TransferMode
- TransferRate
- TransferTime
- Version
- Events
- How to get support?
LoopFiles method
Loops through multiple files in a sequence, recursive, giving their names.
Type
VoidSyntax
- C#
- VB.NET
public Void LoopFiles();
public Void LoopFiles(String RemotePath);
The LoopFiles(RemotePath) syntax has these parts:
public Void LoopFiles(String RemotePath, Int32 MaxLevel);
The LoopFiles(RemotePath,MaxLevel) syntax has these parts:
public Void LoopFiles(String RemotePath);
The LoopFiles(RemotePath) syntax has these parts:
RemotePath | Holds full path on the server from where to start enumerating files and folders. |
public Void LoopFiles(String RemotePath, Int32 MaxLevel);
The LoopFiles(RemotePath,MaxLevel) syntax has these parts:
RemotePath | Holds full path on the server from where to start enumerating files and folders. |
MaxLevel | Specifies maximum number of subdirectory levels to loop. 0 for unlimited. |
public Sub LoopFiles()
public Sub LoopFiles(ByVal RemotePath As String)
The LoopFiles(RemotePath) syntax has these parts:
public Sub LoopFiles(ByVal RemotePath As String, ByVal MaxLevel As Int32)
The LoopFiles(RemotePath,MaxLevel) syntax has these parts:
public Sub LoopFiles(ByVal RemotePath As String)
The LoopFiles(RemotePath) syntax has these parts:
RemotePath | Holds full path on the server from where to start enumerating files and folders. |
public Sub LoopFiles(ByVal RemotePath As String, ByVal MaxLevel As Int32)
The LoopFiles(RemotePath,MaxLevel) syntax has these parts:
RemotePath | Holds full path on the server from where to start enumerating files and folders. |
MaxLevel | Specifies maximum number of subdirectory levels to loop. 0 for unlimited. |
Remarks
This method will just loop through all folders and files on specified RemotePath, and fire LoopItem event for each file/folder it finds - allowing you to save it (for example, in local collection) and then use later for various file/folder operations. wodSFTP.NET will not do anything with those items by itself! Since LoopItem will provide full paths to those files, it is easy to use those paths later on with GetFile, GetAttributes, PutFile, DeleteFile (etc.) operations.If you want to download all those files (and create appropriate directory structure locally) you should use GetFiles method instead.
Do not forget that RemotePath should always specify full absolute path (i.e. /home/joe/something) instead of relative path (i.e. joe/something).