#ifndef _NTRTL_H
//
// Cloud Filters
//
#if (PHNT_VERSION >= PHNT_WINDOWS_10_RS3)
// msdn
NTSYSAPI
BOOLEAN
NTAPI
RtlIsCloudFilesPlaceholder(
_In_ ULONG FileAttributes,
_In_ ULONG ReparseTag
);
View code on GitHub// ntifs.h
NTSYSAPI BOOLEAN RtlIsCloudFilesPlaceholder(
[in] ULONG FileAttributes,
[in] ULONG ReparseTag
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlIsCloudFilesPlaceholder routine determines if a file or a directory is a CloudFiles placeholder, based on the FileAttributes and ReparseTag values of the file. These values can be obtained by listing the directory containing the file or by directly querying FileAttributeTagInfo on the file.
FileAttributes [in]Specifies the attributes of a file or directory.
ReparseTag [in]The ReparseTag or EaSize of a file or directory.
This function returns TRUE if the file or directory is a CloudFiles partial or full placeholder. It returns FALSE if either the file or directory is not a CloudFiles placeholder.