Function Reference


_WinAPI_SetFileShortName

Sets the short name for the specified file

#include <WinAPIFiles.au3>
_WinAPI_SetFileShortName ( $hFile, $sShortName )

Parameters

$hFile A handle to the file. The file must be on an NTFS file system volume. Also, the file must be
opened with either the $GENERIC_ALL access right or $GENERIC_WRITE|$DELETE, and with the
$FILE_FLAG_BACKUP_SEMANTICS file attribute.
$sShortName The valid short name for the file. If the specified short name already exists, the function
fails and the last error code is ERROR_ALREADY_EXISTS (183).

Return Value

Success: True
Failure: False

Remarks

The caller of this function must have the $SE_RESTORE_NAME privilege.

See Also

Search SetFileShortName in MSDN Library.

Example

#include <APIFilesConstants.au3>
#include <Debug.au3>
#include <WinAPIFiles.au3>
#include <WinAPIHObj.au3>
#include <WinAPIProc.au3>
#include <WinAPIShPath.au3>

#RequireAdmin

_DebugSetup(Default, True)

Example()

Func Example()
        Local Const $sTemp = @TempDir & '\Temporary File.txt'

        ; Check NTFS file system
        If StringCompare(DriveGetFileSystem(_WinAPI_PathStripToRoot($sTemp)), 'NTFS') Then
                _DebugReport('! Error' & @TAB & 'The file must be on an NTFS file system volume.' & @CRLF)
                Exit
        EndIf

        ; Enable "SeRestorePrivilege" privilege to perform renaming operation
        Local $hToken = _WinAPI_OpenProcessToken(BitOR($TOKEN_ADJUST_PRIVILEGES, $TOKEN_QUERY))
        Local $aAdjust
        _WinAPI_AdjustTokenPrivileges($hToken, $SE_RESTORE_NAME, $SE_PRIVILEGE_ENABLED, $aAdjust)
        If @error Or @extended Then
                _DebugReport('! Error' & @TAB & 'You do not have the required privileges.' & @CRLF)
                Exit
        EndIf

        ; Create temporary file
        FileWrite($sTemp, '')

        _DebugReport('Old short name: ' & _WinAPI_PathStripPath(FileGetShortName($sTemp)) & @CRLF)

        ; Set "TEMP.TXT" short name for the file
        Local $hFile = _WinAPI_CreateFileEx($sTemp, $OPEN_EXISTING, BitOR($GENERIC_WRITE, $STANDARD_RIGHTS_DELETE), 0, $FILE_FLAG_BACKUP_SEMANTICS)
        _WinAPI_SetFileShortName($hFile, 'TEMP.TXT')
        _WinAPI_CloseHandle($hFile)

        _DebugReport('New short name: ' & _WinAPI_PathStripPath(FileGetShortName($sTemp)) & @CRLF)

        ; Delete temporary file
        FileDelete($sTemp)

        ; Restore "SeRestorePrivilege" privilege by default
        _WinAPI_AdjustTokenPrivileges($hToken, $aAdjust, 0, $aAdjust)
        _WinAPI_CloseHandle($hToken)

EndFunc