Welcome, guest | Sign In | My Account | Store | Cart

Looks through the MS Explorer Favorites folders producing an HTML page with the corresponding URLs as links to them, conveniently formatted.

Python, 67 lines
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
#
# Looks through the given Favorites folder and
# prints out an HTML page with their links.
#
# (copyleft) Jose M Beas, 2003
#

import string, sys, os, ConfigParser

def processURL(filename):
    name = os.path.split(filename)[1]
    name = os.path.splitext(name)[0]
    config = ConfigParser.ConfigParser()
    config.read([filename])
    try:
        url = config.get("InternetShortcut","URL")
        print "<A HREF=\"%s\">%s<A/><BR/>" % (url,name)
    except ConfigParser.NoSectionError:
        print >>sys.stderr, "Could not found URL in %s" % (filename)
      
def processFile(filename):
    # Checks if it is a URL and process it (if so)
    if os.path.splitext(filename)[1] == ".url" :
        processURL(filename)
    
def processDir(dirname,level):
    try:
        filenames = os.listdir(dirname)
    except OSError, err:
        print >>sys.stderr, err
        return
    section = os.path.split(dirname)[1]
    files = []
    folders = []
    for filename in filenames:
        fullname = os.path.join(dirname, filename)
        if os.path.isdir(fullname):
            folders.append(fullname)
        else:
            files.append(fullname)
    print "<H%d>%s</H%d>" % (level,section,level)
    for i in files:
        processFile(i)
    for i in folders:
        print "<UL>"
        processDir(i,level+1)
        print "</UL>"
    
def main(argv):
    import getopt    
    try:
        args, dirname = getopt.getopt(argv[1], "h", ["help"])
    except getopt.error:
        args = "dummy"
    if args:
        print "Usage: %s <directory>" % (argv[0],)
        sys.exit(0)

    if not dirname:
        dirname = ["."]
    print "<HTML>"
    processDir(dirname,1)
    print "</HTML>"

if __name__ == "__main__":
    main(sys.argv)

It can be useful to save all your favorite links from MS Explorer and, maybe, export them into another web browser. (This may be a useful improvement)

1 comment

Foo Bar 21 years, 1 month ago  # | flag

Import Export Wizard. Another approach is to use the Import Export Wizard on the File menu in Internet Explorer. It exports bookmarks to an HTML file with a few clicks of the mouse.