Export file names to .txt file

If you need help on how to use the program
Post Reply
muhammadshawky93
Posts: 4
Joined: 2018-07-23 06:41:32

Export file names to .txt file

Post by muhammadshawky93 »

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 ?
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: Export file names to .txt file

Post by antp »

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:

Code: Select all

dir /b > list.txt
if you wish to list only files without subdirectories:

Code: Select all

dir /a:-d /b > list.txt
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)
muhammadshawky93
Posts: 4
Joined: 2018-07-23 06:41:32

Re: Export file names to .txt file

Post by muhammadshawky93 »

I know this code. I want to add this to ant renamer.
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: Export file names to .txt file

Post by antp »

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.
muhammadshawky93
Posts: 4
Joined: 2018-07-23 06:41:32

Re: Export file names to .txt file

Post by muhammadshawky93 »

I want to add files to ant renamer then ant renamer provides me with the list.
Could you add this feature to ant renamer ?
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: Export file names to .txt file

Post by antp »

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...
muhammadshawky93
Posts: 4
Joined: 2018-07-23 06:41:32

Re: Export file names to .txt file

Post by muhammadshawky93 »

Go on. thank you.
Post Reply