Hi All,
I have a C# .NET Core 3.1 console application .
I have mounted Virtual encrypted disk on my PC (Windows 10) by using Vera Crypt .
I have one requirement, My application has to read text file data from Virtual encrypted disk.
For that, I put one text file inside Virtual encrypted disk. My application can able to read that text file while disk is on mount but when I do dismount the disk, it can't able find the file. it throws error. "file not exist"
How to read the text file even when virtual encrypted disk is on dismount also?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
That's what encrypted volume are good for: the containing files are encrypted. If you want to access the files, of course you will have to mount the volume first. What else would you want to achieve in the first place?
Greets
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi All,
I have a C# .NET Core 3.1 console application .
I have mounted Virtual encrypted disk on my PC (Windows 10) by using Vera Crypt .
I have one requirement, My application has to read text file data from Virtual encrypted disk.
For that, I put one text file inside Virtual encrypted disk. My application can able to read that text file while disk is on mount but when I do dismount the disk, it can't able find the file. it throws error. "file not exist"
How to read the text file even when virtual encrypted disk is on dismount also?
That's what encrypted volume are good for: the containing files are encrypted. If you want to access the files, of course you will have to mount the volume first. What else would you want to achieve in the first place?
Greets