Is it possible to copy a file or a folder from one location to another without modifying its attribute data? For example if I have a folder on a network drive and it was cre
I did something as shown below:
File.SetCreationTime(tgtFile, File.GetCreationTime(srcFile)); File.SetLastAccessTime(tgtFile, File.GetLastAccessTime(srcFile)); File.SetLastWriteTime(tgtFile, File.GetLastWriteTime(srcFile));