• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Backing up file metadata?

Megalith

24-bit/48kHz
Joined
Aug 20, 2006
Messages
13,000
My problem with backing up files in the cloud is that most of your metadata is lost. This would include information such as the creation dates of files. Is there any way to scan a directory and make a copy of each file's unique metadata, and re-apply them to any files that are restored from the cloud?
 
My problem with backing up files in the cloud is that most of your metadata is lost. This would include information such as the creation dates of files. Is there any way to scan a directory and make a copy of each file's unique metadata, and re-apply them to any files that are restored from the cloud?
Only way I know of would be to use an archive format that preserves that information. I think 7-zip can to it's 7z format but i'm not 100% sure there.
 
Last edited:
Creation times aren't the only metadata fields (assuming NTFS). Others include file attributes (hidden, system, compressed, etc.), other timestamps (modified, accessed, changed), NTFS ACLs, owner info, auditing info, etc.
 
Here is another link for working with file attributes. You are asking for some very specific things so I can't one quick answer that would do everything. If that archiving won't work I think PowerShell would be your next best thing because PowerShell can pull any attribute that you can see on the file. Re-applying is where is gets tricky. Some things can be set by already built cmdlets in PowerShell, but others get more complicated.

Use a PowerShell Cmdlet to Work with File Attributes
 
Back
Top