comparison src/luan/modules/Boot.luan @ 1662:d6a50ed9604f

file.move_to
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 02 May 2022 19:15:42 -0600
parents 08177ced7fa0
children 970e635c7196
comparison
equal deleted inserted replaced
1661:08177ced7fa0 1662:d6a50ed9604f
190 this.delete_on_exit = io.file.deleteOnExit 190 this.delete_on_exit = io.file.deleteOnExit
191 this.mkdir = io.mkdir 191 this.mkdir = io.mkdir
192 this.last_modified = io.file.lastModified 192 this.last_modified = io.file.lastModified
193 this.set_last_modified = io.set_last_modified 193 this.set_last_modified = io.set_last_modified
194 this.length = io.file.length 194 this.length = io.file.length
195 this.rename_to = io.rename_to 195 this.move_to = io.move_to
196 this.rename_to = io.move_to -- tmp
196 this.copy_to = io.copy_to 197 this.copy_to = io.copy_to
197 this.link_from = io.link_from 198 this.link_from = io.link_from
198 this.symlink_from = io.symlink_from 199 this.symlink_from = io.symlink_from
199 this.is_symbolic_link = io.is_symbolic_link 200 this.is_symbolic_link = io.is_symbolic_link
200 201