in reply to Re^2: how to move the folder from one directory to another directory?
in thread how to move the folder from one directory to another directory?
But here the session folder is created dynamically along with the time stamp. Here what does file A and file B means??
The linked documentation says: The move function also takes two parameters: the current name and the intended name of the file to be moved
So move( oldname, newname )
use Path::Tiny qw/ path /; path( $oldname )->move( $newname );
|
|---|