| ZennoLab.Macros Assembly > ZennoLab.Macros Namespace > FileSystem Class : FileGetBlocks Method |
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.
public static string[] FileGetBlocks( string path, string blockSplitter, string numberOfLine, bool removeBlock, bool removeEmptyFile )
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.
Type: System.String
Text blocks after spliting and sampling.
string path = {pathToFile}; string blockSplitter = ":"; string numberOfLine = "all"; bool removeBlock = false; string[] result = FileSystem.FileGetBlocks(path, blockSplitter, numberOfLine, removeBlock);
$path = {pathToFile}; $blockSplitter = ":"; $numberOfLine = "all"; $removeBlock = false; $result = FileSystem::FileGetBlocks($path, $blockSplitter, $numberOfLine, $removeBlock);
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven