Custom Query (3921 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (379 - 381 of 3921)

Ticket Resolution Summary Owner Reporter
#3603 Fixed _FileListToArrayRec does not accept leading dot in path name supersonic
Description

Hi,

this:

Local $aTmp = _FileListToArrayRec(@ScriptDir & "\.servicing\SomePath", "*.cmd", 1 + 4 + 8 + 16, 0, 1, 0)

... works in V3.3.12. But in V3.3.14.3 (already maybe in earlier V3.3.14 versions?) it does not.

I would be pleased if this would be fixed soon.

#3602 Wont Fix _PathSplit Strip Blanks gilles@…
Description

as explain in post https://www.autoitscript.com/forum/topic/192761-pb-_pathsplit/

_PathSplit remove space in dir and filenames. As it is possible to create such directory and filename, _pathsplit should preserve them

Solution provided in post

#3601 Fixed _WinAPI_GetPwrCapabilities - Example Script not working correctly. Jon Au3Builder
Description

_ArrayDisplay won't display anything.

#include <Array.au3>
#include <WinAPISys.au3>

Local $aInfo[25][2] = _
		[['Power button', 0], _
		['Sleep button', 0], _
		['Lid switch', 0], _
		['S1', 0], _
		['S2', 0], _
		['S3', 0], _
		['S4', 0], _
		['S5', 0], _
		['HIBERFIL.SYS', 0], _
		['Wake', 0], _
		['Video display dimming', 0], _
		['APM BIOS', 0], _
		['UPS', 0], _
		['Thermal zones', 0], _
		['Throttling', 0], _
		['Throttling min level', 0], _
		['Throttling max level', 0], _
		['Hibernation', 0], _
		['HDD power down', 0], _
		['Batteries', 0], _
		['Batteries short-term', 0], _
		['AC lowest wake state', 0], _
		['Lid lowest wake state', 0], _
		['RTC lowest wake state', 0], _
		['Minimum device wake state', 0]]
Local $aData = _WinAPI_GetPwrCapabilities()

If @error Then
	For $i = 0 To UBound($aInfo) - 1
		$aInfo[$i][1] = $aData[$i]
	Next
Else
	Exit
EndIf

_ArrayDisplay($aInfo, '_WinAPI_GetPwrCapabilities')

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.