Using Perl, is there a difference between Win32API :: File :: MoveFile and CORE :: rename on MSWin32?

I see that Win32API :: File supports MoveFile(). However, I'm not sure how it CORE::rename()is implemented in such a way that it matters. Can someone match the difference - especially for a Win32 environment - between

  • CORE::rename()
  • File::Copy::move()
  • and Win32API::File::MoveFile()
+5
source share
1 answer

renameimplemented in a broken fashion with forever ; movesince it usesrename .

Win32::Unicode::File MoveFileW windows.h moveW , -, , Win32API:: AFAICS .

Related: UTF-8 UTF-8 Perl Windows?

+2

All Articles