| C# | |
|---|---|
public static string[] FileGetBlocks( 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 blocks after spliting and sampling.
| C# | Copy Code |
|---|---|
string path = {pathToFile}; string blockSplitter = ":"; string numberOfLine = "all"; bool removeBlock = false; string[] result = FileSystem.FileGetBlocks(path, blockSplitter, numberOfLine, removeBlock); | |
| PHP | Copy Code |
|---|---|
$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