f2
f2 copied to clipboard
F2 is a cross-platform command-line tool for batch renaming files and directories quickly and safely. Written in Go!
I'm a newbie to use F2 and feel it's so fast and cool. I use it to rename my photos. And is it possible to add DateTimeOriginal time? It's the...
Trying to rename a folder full of mp3 on Windows 10 using ID3 tags results in the following error for every file: ```The process cannot access the file because it...
I'm looking for a way to search for patterns in filenames and replace/substitute them based on a list with patterns. I read the documentation about CSV use and this issue:...
This tool is showing to be more usefull by the day. Initial reason to use it was the adding of Linux next to Windows (dual boot) and some file-handling tools...
Besides renaming files I'm experimenting with using F2 to move files to other folders (and migrate from Robobasket for Windows in the process). The use case is a folder with...
Hi there, I found your app tonight while testing multiple cli regex batch renaming tools. In the first place it was very convincing but it didn't work for me. I...
For example currently fixing conflicts mean adding ` (2)`, ` (3)`, ... to filename Can I change to `_01`, `_02`, ... Because for some reason I don't want space in...
Environment: Windows Assuming there are several files in the same folder that are not hidden: ``` .01.png 01.png 02.png ``` So, using ``` F2 -f ".*" -r "{%02d}.png" ``` At...
version: F2 version `v1.7.2`, installed from apt system: `Debian 12 bookworm` files: ```verilog 00.a.txt 01.b.txt 02.c.txt 03.d.txt 04.e.txt 05.f.txt ``` cmd: ```shell f2 -f "0(\d\)\." -r "0\$1_" ``` result: ```verilog...