Question Software that will create text (ascii) reading of files in directory

Status
Not open for further replies.

brainstormer

Distinguished
Mar 17, 2011
23
0
18,510
I am looking for software that will create text (ascii) reading of files in directory. I use to be able to use WS_FTP to do this, but I believe it's not longer available in a freeware version.

What such software does is once navigated to a directory, reads the file names and copies to a buffer which you can then paste into an editor.
 
This is trivial to do in PowerShell using recursion to traverse any branch of the directory tree or the entire tree.

Starter suggestion:

Open Powershell (as Admin) and run the Get-ChildItem cmdlet at the PS> prompt.

Reference:

https://docs.microsoft.com/en-us/po....management/get-childitem?view=powershell-7.2

= = = =

And, very likely you can use the output to create a table as a data source for a database such as Access.

Very straightforward, thereafter to create queries and reports (routine and/or ad hoc) to look for any given file or file contents.

Just a click away in some cases.
 
I was able to get something like this with filezilla by highlighting directory and selecting Copy URLS to clipboard:

<Deleted all your ftp 'links' due to irrelevance>

This actually works to have someone code html files based on my original html files for other CD's but without letting them have my password. Not sure if my domain is set up to do ftp. (and minimal learning curve on doing it another way).
 
Last edited by a moderator:
Status
Not open for further replies.