Rev 37 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 37 | Rev 43 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | #! /usr/bin/env python3 | 1 | #! /usr/bin/env python3 | 
| - | 2 | # ============================================================================= | |
| - | 3 | # Create | |
| - | 4 | # name  : Andre Rikkert de Koe          date:   Apr 2011 | |
| - | 5 | # descr : filefind | |
| - | 6 | #         This is a demo of programming in the Python language. | |
| - | 7 | #         Its part of a project to implement a program to create a directory | |
| - | 8 | #         tree similar to the output of the Unix find program. | |
| - | 9 | # EUID  : Any user who has read access to all the files being searched for. | |
| - | 10 | # run   : interactive | |
| - | 11 | # | |
| - | 12 | # Changes | |
| - | 13 | # name  :                               date: | |
| - | 14 | # descr : short description | |
| - | 15 | # | |
| - | 16 | # ============================================================================= | |
| - | 17 | ||
| 2 | import sys | 18 | import sys | 
| 3 | import os.path | 19 | import os.path | 
| 4 | 20 | ||
| 5 | # ============================================================================= | 21 | # ============================================================================= | 
| 6 | # Functions | 22 | # Functions |