printing favorite urls

  • Thread starter Thread starter A.Nelson
  • Start date Start date
A

A.Nelson

I would like to print the urls of my favorites as TEXT -
in the order of the folders and subfolders - does anyone
know if there is a way to do this? Thanks for any help
you can give.
 
If you are running Windows 2000 or Windows XP the following command file
might do what you want. If you have changed the location of your Favorites
folder from %USERPROFILE% then you will need to modify the fourth line of
the file to reflect the location of your Favorites folder.

@echo off

setlocal

set SaveCurrentDir=%CD%

cd /d %USERPROFILE%

for /f "usebackq tokens=1*" %%i in (`dir /a-d/s/b Favorites`) do (

echo %%i %%j

findstr /R "^URL" "%%i %%j"

echo.

)

cd /d %SaveCurrentDir%
 
Back
Top