All Packages Class Hierarchy This Package Previous Next Index
Interface com.starla.lite.SMBSearchContext
- public interface SMBSearchContext
SMB search context interface
- Version:
- 1.0
-
nextFileInfo()
- Return the next file in this search as an SMB file information object.
-
nextFileName()
- Return the next file name in this search.
-
StartSearch(String, int)
- Start a new search using the specified file name string and search attributes
nextFileInfo
public abstract SMBFileInfo nextFileInfo() throws IOException
- Return the next file in this search as an SMB file information object.
- Returns:
- SMBFileInfo object, or null if there are no more files.
- Throws: IOException
- If an I/O error occurs.
nextFileName
public abstract String nextFileName() throws IOException
- Return the next file name in this search.
- Returns:
- Next file name string, or null if there are no more files.
- Throws: IOException
- If an I/O error occurs.
StartSearch
public abstract void StartSearch(String fname,
int attr) throws IOException
- Start a new search using the specified file name string and search attributes
- Parameters:
- fname - File name string, may contain wilcards.
- attr - File attributes bit mask.
- Throws: IOException
- If an I/O error occurs.
All Packages Class Hierarchy This Package Previous Next Index