I want to rename files from list but i can not make the list for folder that I need.
How to export file names to .txt file ?
Export file names to .txt file
Re: Export file names to .txt file
What is the source you wish to use as names? Another folder's files?
If you want to export the names of the files of a folder to a .txt file, create a new file in that folder with a .cmd extension (for example "list.cmd") and put this in it:
if you wish to list only files without subdirectories:
double-click on that .cmd file, and a list.txt file should be created
(you may want to remove the .cmd file itself from the list afterwards)
If you want to export the names of the files of a folder to a .txt file, create a new file in that folder with a .cmd extension (for example "list.cmd") and put this in it:
Code: Select all
dir /b > list.txt
Code: Select all
dir /a:-d /b > list.txt
(you may want to remove the .cmd file itself from the list afterwards)
-
- Posts: 4
- Joined: 2018-07-23 06:41:32
Re: Export file names to .txt file
I know this code. I want to add this to ant renamer.
Re: Export file names to .txt file
I don't understand your request 
If you want to rename from a list, you just need a list of new names, but Ant Renamer can't provide you such list since it is what it needs as input data.

If you want to rename from a list, you just need a list of new names, but Ant Renamer can't provide you such list since it is what it needs as input data.
-
- Posts: 4
- Joined: 2018-07-23 06:41:32
Re: Export file names to .txt file
I want to add files to ant renamer then ant renamer provides me with the list.
Could you add this feature to ant renamer ?
Could you add this feature to ant renamer ?
Re: Export file names to .txt file
Ah you want to export what is listed in the "Files" page of Ant Renamer?
It is on my to-do list, so maybe one day...
It is on my to-do list, so maybe one day...
-
- Posts: 4
- Joined: 2018-07-23 06:41:32
Re: Export file names to .txt file
Go on. thank you.