Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (307 - 309 of 3893)

Ticket Resolution Summary Owner Reporter
#1069 No Bug Check _PathSplit Function. ZNote
Description

; Written By ZNote ( ZNOTE9 aT yAhoO dOt CoM )

; Check _PathSplit Function.

; Array Returns Incorrect Values For Folder Names Having Dot(s) Present.

; Example:-

#include <file.au3> #include <array.au3>

Dim $szDrive, $szDir, $szFName, $szExt

$ZNote = @DesktopDir & "\New Folder.l.l.l.l.l..l.l.l.l.l"

; DirCreate($ZNote) ; ( optional )

$TestPath = _PathSplit($ZNote, $szDrive, $szDir, $szFName, $szExt)

_ArrayDisplay($TestPath,"Demo _PathSplit()")

;====================================================

; Output Currently Present:-

;====================================================

; @DesktopDir = "C:\Documents and Settings\<user>\Desktop" (say)

; $TestPath[0] = "C:\Documents and Settings\<user>\Desktop\New Folder.l.l.l.l.l..l.l.l.l.l"

; $TestPath[1] = "C:"

; $TestPath[2] = "\Documents and Settings\<user>\Desktop\"

; $TestPath[3] = "New Folder.l.l.l.l.l..l.l.l.l"

; $TestPath[4] = ".l"

;====================================================

; Output Should Be:-

;====================================================

; @DesktopDir = "C:\Documents and Settings\<user>\Desktop" (say)

; $TestPath[0] = "C:\Documents and Settings\<user>\Desktop\New Folder.l.l.l.l.l..l.l.l.l.l"

; $TestPath[1] = "C:"

; $TestPath[2] = "\Documents and Settings\<user>\Desktop\"

; $TestPath[3] = "New Folder.l.l.l.l.l..l.l.l.l.l"

; $TestPath[4] = ""

;==========================END=======================

; Use FileGetAttrib() function to determine whether ; entered path represents a folder or file.

; You can also add this example in help file for folder; ; For file - @ScriptFullPath is already present.

#1072 No Bug DirCreate gcue
Description

DirCreate("F:\Tools") ;DirCreate("C:\Tools")

works on a hard drive but not on a usb drive (on a usb drive, a file "Tools" wout extension gets created instead)

#1085 No Bug General timer descrepancies Zoster
Description

In continuation of #1082:

Well I certainly believe that it works for you but the problem seems to be suprisingly wide spread. Please see:

Beware of QueryPerformanceCounter(): http://www.virtualdub.org/blog/pivot/entry.php?id=106

Performance counter value may unexpectedly leap forward: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q274323&

http://www.mindcontrol.org/~hplus/pc-timers.html

Not sure what you guys can do about it but I think it should be noted in the help file that those variances might occur. I'm using the @timemacros as a workaround for now.

Note: See TracQuery for help on using queries.