-
Notifications
You must be signed in to change notification settings - Fork 0
Profiles
Jed Burke edited this page Oct 8, 2017
·
1 revision
Profiles are useful for when you have to repetitively rename files with the same regex. Profiles can store the pattern, the replacement, and the included extensions among other properties.
Profiles are stored in the profiles.json
file in the ~\org.rename directory or the main directory. As expected, the profiles stored in the user's directory are specific to them. Use the main directory for global profiles.
Here is an example of what may be stored in profiles file:
{
"_2s": {
"match": "[_]+",
"replace": " ",
"ext": ["*"],
"whitelist": true,
"dir": ["path/to/ecchi/pics", "path/to/ecchi/vids"]
}
}
All of the properties are optional and except for "dirs", will unconditionally overwrite what has been specified in the command-line.