Paco Zarabozo A. wrote: > Hello All, > > I'm working on a script that needs to make a backup of somefiles in some > point. However, the link function doesn't make a copy of the files. If i > link a file and then write to any of those files, any changes affect to > both files just like if they were the same file. This is strange on > Windows, but it happens just like that. Do you know if there's a way to > copy a file without allowing that to happen?
I'm assuming link on Win32 would do the equivalent of link on UNIX which would be to just create two filenames that point to the same file. So why not just copy the files ? File::Copy module should be useful. _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
