Differences
This shows you the differences between the selected revisions of the page.
| library_remotedirectoryinfo 2012-01-27 | library_remotedirectoryinfo 2020-12-24 (current) | ||
| Line 1: | Line 1: | ||
| ====== RemoteDirectoryInfo Class ====== | ====== RemoteDirectoryInfo Class ====== | ||
| - | Represents data about remote directory.· | + | Represents data about a remote directory. |
| - | &future_feature | + | ~~AD~~ |
| ===== Syntax ===== | ===== Syntax ===== | ||
| Namespace: ''WinSCP'' | Namespace: ''WinSCP'' | ||
| - | <code csharp> | + | <code csharp *> |
| public sealed class RemoteDirectoryInfo | public sealed class RemoteDirectoryInfo | ||
| + | </code> | ||
| + | |||
| + | <code vbnet *> | ||
| + | Public NotInheritable Class RemoteDirectoryInfo | ||
| </code> | </code> | ||
| ===== Properties ===== | ===== Properties ===== | ||
| ^ Name ^ Description ^ | ^ Name ^ Description ^ | ||
| - | | [[library_collections|RemoteFileInfoCollection]] Files | Collection of files in the remote directory. See ''[[library_remotefileinfo|RemoteFileInfo]]''. | | + | | [[library_doc_collections|RemoteFileInfoCollection]] Files | Collection of files in the remote directory. See ''[[library_remotefileinfo|RemoteFileInfo]]''. | |
| ===== Remarks ===== | ===== Remarks ===== | ||
| - | Instance of the class can be created by the WinSCP assembly only. You can only get an instance of the class by calling ''[[library_session_listdirectory|Session.ListDirectory]]''. | + | This class can only be instantiated by the WinSCP assembly. To get an instance of the class, call ''[[library_session_listdirectory|Session.ListDirectory]]''. |
| ===== Example ===== | ===== Example ===== | ||
| See [[library_session_listdirectory#example|example]] for ''[[library_session_listdirectory#example|Session.ListDirectory]]''. | See [[library_session_listdirectory#example|example]] for ''[[library_session_listdirectory#example|Session.ListDirectory]]''. | ||
| + | |||
| + | ==== Real-Life Examples ==== | ||
| + | |||
| + | * [[library_example_listing_files_matching_wildcard|*]]; | ||
| + | * [[library_example_recursive_search_text|*]]; | ||
| + | * [[script_custom_listing_format_csv|*]]. | ||