I copy a file with the Turtle library. I do so like this:
...
do
TU.cp oldname newname
...
However this sets the date of the copied file to the current time - how can I keep the original date as a shell would do with cp -p?
I copy a file with the Turtle library. I do so like this:
...
do
TU.cp oldname newname
...
However this sets the date of the copied file to the current time - how can I keep the original date as a shell would do with cp -p?
Copyright © 2021 Jogjafile Inc.
It looks like Turtle does not allow that.
You can however use
copyFileWithMetadatainSystem.Directory(part ofbase) instead.