Registered StackHub users may elect to receive email notifications whenever a new package version is released or a comment is posted on the forum.
There are 0 watchers.
Close the provided SmbReader along with any of its share or file connections.
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName").smbReaderClose
Side effects:
Use the provided SmbReader instance to connect to a specific share name. The same SmbReader can be re-used for connecting to different shares, but just one at a time. Each time smbReaderConnect is called, the previous share connection is released.
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName")
Side effects:
Use the provided SmbReader instance to list files in a specific folder path, that match the provided file name pattern. The SmbReader must previously have been connected to a specific shareName using smbReaderConnect.
The same SmbReader can be re-used for connecting to different shares, but just one at a time. Each time smbReaderConnect is called, the previous share connection is released.
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName").smbReaderListFiles("dirName", "*.txt")
Side effects:
Use the provided SmbReader to cause the remote moving or renaming of a file.
which understands how to parse a binary byte stream.
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName").smbReaderMoveFile("dirName1", "file1.xlsx", "dirName2", "file3.xlsx")
Side effects:
Construct an SMB Reader.
Examples:
smbReaderOpen("10.0.0.1") smbReaderOpen("10.0.0.1", "user", "pass") smbReaderOpen("10.0.0.1", "user", "pass", "DOMAIN")
Side effects:
Use the provided SmbReader to read the contents of the named binary file in the named folder. The file contents will be returned as a Fantom Buf which can be passed to a function like poiReaderOpenBuf which understands how to parse a binary byte stream.
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName").smbReaderReadBinaryFile("dirName", "file1.xlsx")
Side effects:
Use the provided SmbReader to read the contents of the named text file in the named folder. The file contents will be returned as a Str and can be further parsed by the calling Axon
Examples:
smbReaderOpen("10.0.0.1").smbReaderConnect("shareName").smbReaderReadFile("dirName", "file1.txt")
Side effects: