I have a .net core 2.2 console app which working with files on windows. I would like to add some custom metadata to a file so I'll be able to recognize the file with no dependency on name / path. Trying to avoid using shell scripts or dsofile.dll.
Asked
Active
Viewed 126 times
0
-
2Please always provide a Minimal Reproducible Example of what you tried first to help you better. Refer https://stackoverflow.com/help/minimal-reproducible-example – Sathish Guru V Apr 24 '20 at 10:45
-
I think your only option is DSOfile or you need to make sure that you file supports metadata. Take a look here https://stackoverflow.com/questions/3235190/is-it-possible-to-add-custom-metadata-to-file?rq=1 – ipinak Apr 24 '20 at 10:54
-
What this app is doing? The app itself can maintain this data itself, you can use full filename alone as a key or using size+hash combo to support renamed/moved file. – Sinatr Apr 24 '20 at 11:08