Skip to content

Commit

Permalink
Modification in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
emilefyon committed Nov 2, 2014
1 parent 5d35da3 commit 13adfbe
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/Lib_File.md
Expand Up @@ -14,8 +14,8 @@
Overwrite the file specified with the content specified

#### Arguments
* file as String: the full path of the string
* content as String: the content that has to be written in the file
* **file** as String: the full path of the string
* **content** as String: the content that has to be written in the file

#### Specifications / limitations
* If the file does not exists, the file is created
Expand All @@ -24,15 +24,13 @@ Overwrite the file specified with the content specified
*Example: writeFile("c:\NewFile.txt", "Lorem Ipsum") *




### readFile (file)

Read the content of a file and return a single line with all the content

#### Arguments
* file as String : the full path of the file
* The content is retrieved without any line returns (line returns are replaced by space)
* **file** as String : the full path of the file
* *(optional)* **createFile** as boolean: if true, create a file of the file does not exists (default = false)

#### Specifications / limitations
* The file has to Exists, currently no error handling
Expand All @@ -43,7 +41,7 @@ Read the content of a file and return a single line with all the content
calls readFile() and then truncate the text to 30000 characters in order to avoid Excel limitations in cell content

#### Arguments
* file as String : the full path of the file
* **file** as String : the full path of the file


#### Specifications / limitations
Expand All @@ -56,7 +54,7 @@ calls readFile() and then truncate the text to 30000 characters in order to avoi
Check if the specified file exists. Return a boolean value.

#### Arguments
* file as String : the full path of the file
* **file** as String : the full path of the file


#### Specifications / limitations
Expand Down

0 comments on commit 13adfbe

Please sign in to comment.