IEMoveFileEx function

Calls the standard MoveFileEx function from a higher-integrity user context. Moves an existing file or directory, including its children, with various move options.

Syntax

BOOL IEMoveFileEx(
  _In_ LPCWSTR lpExistingFileName,
  _In_ LPCWSTR lpNewFileName,
       DWORD   dwFlags
);

Parameters

  • lpExistingFileName [in]
    The current name of the file or directory on the local computer.

  • lpNewFileName [in]
    The new name of the file or directory on the local computer.

  • dwFlags
    A list of this parameter can be found in MoveFileEx

Return value

Returns TRUE if successful, FALSE otherwise.

Requirements

Minimum supported client

Windows XP with SP2

Minimum supported server

Windows Server 2003

Product

Internet Explorer 8

Header

Iepmapi.h

Library

Iepmapi.lib

DLL

Ieframe.dll

See also

MoveFileEx