Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
proc recurlistdir {start} {
global dirlist
foreach p [glob -nocomplain $start] {
if {[file isdirectory $p]} {
lappend dirlist $p
recurlistdir $p/*
}
}
return [llength $dirlist]
}
if {[recurlistdir] > 0} {
foreach name $dirlist {
if {[regexp "2004" $name]} {
regsub -all "2004" $name 2005 name
file mkdir $name
}
}
}