Skip to content

Latest commit

 

History

History
115 lines (91 loc) · 3.57 KB

ni-winioctl-fsctl_get_reparse_point.md

File metadata and controls

115 lines (91 loc) · 3.57 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist f1_keywords dev_langs topic_type api_type api_location api_name
NI:winioctl.FSCTL_GET_REPARSE_POINT
FSCTL_GET_REPARSE_POINT
Retrieves the reparse point data associated with the file or directory identified by the specified handle.
FSCTL_GET_REPARSE_POINT
FSCTL_GET_REPARSE_POINT control
FSCTL_GET_REPARSE_POINT control code [Files]
_win32_fsctl_get_reparse_point
base.fsctl_get_reparse_point
fs.fsctl_get_reparse_point
winioctl/FSCTL_GET_REPARSE_POINT
fs\fsctl_get_reparse_point.htm
fs
6f1b7ea2-aed6-4ab4-8e92-1b77ab5cfefb
12/05/2018
FSCTL_GET_REPARSE_POINT, FSCTL_GET_REPARSE_POINT control, FSCTL_GET_REPARSE_POINT control code [Files], _win32_fsctl_get_reparse_point, base.fsctl_get_reparse_point, fs.fsctl_get_reparse_point, winioctl/FSCTL_GET_REPARSE_POINT
winioctl.h
Windows.h
Windows
Windows XP [desktop apps only]
Windows Server 2003 [desktop apps only]
Windows
FSCTL_GET_REPARSE_POINT
winioctl/FSCTL_GET_REPARSE_POINT
c++
APIRef
kbSyntax
HeaderDef
WinIoCtl.h
FSCTL_GET_REPARSE_POINT

FSCTL_GET_REPARSE_POINT IOCTL

-description

Retrieves the reparse point data associated with the file or directory identified by the specified handle.

To perform this operation, call the DeviceIoControl function with the following parameters.

BOOL DeviceIoControl(
  (HANDLE) hDevice,             // handle to file or directory
  FSCTL_GET_REPARSE_POINT,      // dwIoControlCode
  NULL,                         // lpInBuffer
  0,                            // nInBufferSize
  (LPVOID) lpOutBuffer,         // output buffer
  (DWORD) nOutBufferSize,       // size of output buffer
  (LPDWORD) lpBytesReturned,    // number of bytes returned
  (LPOVERLAPPED) lpOverlapped   // OVERLAPPED structure
);

-ioctlparameters

-input-buffer

-input-buffer-length

-output-buffer

-output-buffer-length

-in-out-buffer

-inout-buffer-length

-status-block

Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful.

Otherwise, Status is set to the appropriate error condition as a NTSTATUS code.

For more information, see NTSTATUS Values.

-remarks

For the implications of overlapped I/O on this operation, see the Remarks section of DeviceIoControl.

In Windows 8 and Windows Server 2012, this code is supported by the following technologies.

Technology Supported
Server Message Block (SMB) 3.0 protocol Yes
SMB 3.0 Transparent Failover (TFO) Yes
SMB 3.0 with Scale-out File Shares (SO) Yes
Cluster Shared Volume File System (CsvFS) No
Resilient File System (ReFS) Yes

CsvFs does not support reparse points.

-see-also