Browse Source

Updates README-en.md

Auto commit by GitBook Editor
Rafael Arce Nazario 8 years ago
parent
commit
4ff3a076e6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md View File

261
     ```
261
     ```
262
    Its purpose is to associate the object called `file` with the data file `dvd_csv.txt`. When openning a data file in a program it is often necessary to specify the file's absolute path to guarantee that it is found regardless of where the executable is placed. Find out the **absolute path** of `dvd_csv.txt` and substitute it for the current `"dvd_csv.txt"` string. For example, after the change the line could look as follows:
262
    Its purpose is to associate the object called `file` with the data file `dvd_csv.txt`. When openning a data file in a program it is often necessary to specify the file's absolute path to guarantee that it is found regardless of where the executable is placed. Find out the **absolute path** of `dvd_csv.txt` and substitute it for the current `"dvd_csv.txt"` string. For example, after the change the line could look as follows:
263
     ```cpp
263
     ```cpp
264
-    filemanip file("/home/eip/dvddvd_csv.txt") ;
264
+    filemanip file("/home/eip/functions-dvdinfo/dvd_csv.txt") ;
265
     ```
265
     ```
266
 
266
 
267
 1. Perform the following implementations in the `main` function (in the `main.cpp` file):
267
 1. Perform the following implementations in the `main` function (in the `main.cpp` file):