FileInfo Structure/Class
[C]
struct FlowSshC_FileInfo
{
wchar_t const* m_name;
FlowSshC_FileAttrs m_attrs;
};
[C++]
struct FileInfo
{
std::wstring m_name;
FileAttrs m_attrs;
};
[C#]
public sealed class FileInfo
{
string Name;
FileAttrs Attrs;
}
Members
- Name: Name of the file whose attributes are described.
- Attrs: A FileAttrs structure/class.
Remarks
This structure/class identifies a file and its corresponding attributes. It is used with the list handler.