FileExportEncryptedFileRaw Method (String, Stream, PathFormat) |
[AlphaFS] Backs up (export) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
intended to implement backup and restore functionality, while maintaining files in their encrypted state.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static void ExportEncryptedFileRaw(
string fileName,
Stream outputStream,
PathFormat pathFormat
)
Public Shared Sub ExportEncryptedFileRaw (
fileName As String,
outputStream As Stream,
pathFormat As PathFormat
)
public:
static void ExportEncryptedFileRaw(
String^ fileName,
Stream^ outputStream,
PathFormat pathFormat
)
static member ExportEncryptedFileRaw :
fileName : string *
outputStream : Stream *
pathFormat : PathFormat -> unit
Parameters
- fileName
- Type: SystemString
The name of the file to be backed up. - outputStream
- Type: System.IOStream
The destination stream to which the backup data will be written. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
The path format of the fileName parameter.
Remarks
The file being backed up is not decrypted; it is backed up in its encrypted state.
If the caller does not have access to the key for the file, the caller needs
Backup to export encrypted files. See
PrivilegeEnabler.
To backup an encrypted file call one of the
ExportEncryptedFileRaw Overload overloads and specify the file to backup
along with the destination stream of the backup data.
This function is intended for the backup of only encrypted files; see BackupFileStream for backup
of unencrypted files.
See Also