On 4/16/24 23:25, ToddAndMargo via perl6-users wrote:
`\\>\` should have been
`\\?\`
On 4/16/24 20:57, ToddAndMargo via perl6-users wrote:
$LongName = $FileName;
if $FileName.chars >= MAX_PATH { $LongName = Q[\\?\] ~ $FileName; }
What the about is all about is that MAX_PATH, which
limits the file name to 260 characters, can go up to
32,767 wide characters, prepend "\\
On 4/16/24 18:43, ToddAndMargo via perl6-users wrote:
On 4/16/24 01:21, ToddAndMargo via perl6-users wrote:
Hi All,
Windows 11
It has been so long that I have done one of these that
my brain is seizing.
https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-deletefilea
C++
B
On 4/16/24 01:21, ToddAndMargo via perl6-users wrote:
Hi All,
Windows 11
It has been so long that I have done one of these that
my brain is seizing.
https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-deletefilea
C++
BOOL DeleteFileA(
[in] LPCSTR lpFileName
);
Would s
Hi All,
Windows 11
It has been so long that I have done one of these that
my brain is seizing.
https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-deletefilea
C++
BOOL DeleteFileA(
[in] LPCSTR lpFileName
);
Would some kind soul please show me how to do this again?
Many