R
Roland Mösl
I have in my software a backup system integrated.
The subroutine duing the copy job
if ( ! open ( GET_TARGET, ">$target" ) )
{
if ( $condition eq 'alert' ) { view_alert ( "get_file_copy: can not
open $target" ) }
}
Which means open at the target a file for overwrite.
If open fails, make an error message.
This worked for years fine on windows XP.
Now I make my first backup at Windows 7 64 Bit
Surpise, I get at each altered file
this means file exists on backup drive,
but should be overwritten by newer version
an error message.
But only at an external harddisk NTSF formated.
The same software works fine on a 32 Bit FAT
SD-Card
Any ideas about the problem?
The subroutine duing the copy job
if ( ! open ( GET_TARGET, ">$target" ) )
{
if ( $condition eq 'alert' ) { view_alert ( "get_file_copy: can not
open $target" ) }
}
Which means open at the target a file for overwrite.
If open fails, make an error message.
This worked for years fine on windows XP.
Now I make my first backup at Windows 7 64 Bit
Surpise, I get at each altered file
this means file exists on backup drive,
but should be overwritten by newer version
an error message.
But only at an external harddisk NTSF formated.
The same software works fine on a 32 Bit FAT
SD-Card
Any ideas about the problem?