|
|
|
|
|
|
|
|
|
|
File-handling
|
|
|
|
|
|
|
Selection
|
Description
|
|
Overwrite
|
The original file is updated in place. The logic behind this is that the user typically just wants the file fixed and doesn't want multiple versions hanging around.
|
|
Backup
|
The original file is renamed to indicate that it is a backup and the processed file is given the name of the original file. For example, given an original file named "example.txt":
-
the original file is renamed to "example~.txt"
-
the processed file is saved as "example.txt"
|
|
Generate
|
The original file is left unchanged. The processed file is given a name to indicate that it is the successor. For example, given an original file named "example.txt", the processed file will be saved as "example.out.txt".
|
|
|
|
|
|
|