ZennoLab Assemblies Documentation
FileGetBlock Method
Example 

Type: System.String

Path to the source file.

Type: System.String

Delimiter for text in the file.

Type: System.String

The line number after splitting into blocks.

Type: System.Boolean

true if remove the used block; otherwise, false.

Type: System.Boolean

true if need to remove empty source file after sampling; otherwise, false.

Gets text block from the file
Syntax
public static string FileGetBlock( 
   string path,
   string blockSplitter,
   string numberOfLine,
   bool removeBlock,
   bool removeEmptyFile
)

Parameters

path

Type: System.String

Path to the source file.

blockSplitter

Type: System.String

Delimiter for text in the file.

numberOfLine

Type: System.String

The line number after splitting into blocks.

removeBlock

Type: System.Boolean

true if remove the used block; otherwise, false.

removeEmptyFile

Type: System.Boolean

true if need to remove empty source file after sampling; otherwise, false.

Return Value

Type: System.String

Text block after spliting and sampling.

Example
The following example shows call the FileGetBlock method.
string path = {pathToFile};
string blockSplitter = ":";
string numberOfLine = "random";
bool removeBlock = false;
string result = FileSystem.FileGetBlock(path, blockSplitter, numberOfLine, removeBlock);
$path = {pathToFile};
$blockSplitter = ":";
$numberOfLine = "random";
$removeBlock = false;
$result = FileSystem::FileGetBlock($path, $blockSplitter, $numberOfLine, $removeBlock);
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

FileSystem Class
FileSystem Members

Send Feedback