2003-09-01 Vince Darley <vincentdarley@sourceforge.net>
* library/mk4vfs.tcl: fix to Bug #796782.
+ * library/zipvfs.tcl:
+ * library/tarvfs.tcl: fix to similar bug in these filesystems.
2003-07-15 Vince Darley <vincentdarley@sourceforge.net>
# for the existence of a single file $path only
set res [::tar::getdir $tarfd $path $pattern]
if {![string length $pattern]} {
+ if {![::tar::exists $tarfd $path]} { return {} }
set res [list $actualpath]
set actualpath ""
}
set res [::zip::getdir $zipfd $path $pattern]
#::vfs::log "got $res"
if {![string length $pattern]} {
+ if {![::zip::exists $zipfd $path]} { return {} }
set res [list $actualpath]
set actualpath ""
}