comparison src/luan/modules/Boot.luan @ 1367:836e00bf7ce2

add Lucene backup_to
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 18 Jun 2019 16:27:03 -0600
parents 45363886f256
children 9ab267b9427c
comparison
equal deleted inserted replaced
1366:ae2321a09723 1367:836e00bf7ce2
171 this.mkdir = io.mkdir 171 this.mkdir = io.mkdir
172 this.last_modified = io.file.lastModified 172 this.last_modified = io.file.lastModified
173 this.set_last_modified = io.set_last_modified 173 this.set_last_modified = io.set_last_modified
174 this.length = io.file.length 174 this.length = io.file.length
175 this.rename_to = io.rename_to 175 this.rename_to = io.rename_to
176 this.link_to = io.link_to
177 this.symlink_to = io.symlink_to
176 this.is_symbolic_link = io.is_symbolic_link 178 this.is_symbolic_link = io.is_symbolic_link
177 179
178 function this.child(name) 180 function this.child(name)
179 return new_LuanFile( io.child(name) ) 181 return new_LuanFile( io.child(name) )
180 end 182 end