-
Notifications
You must be signed in to change notification settings - Fork 31
Description
I'm facing a weird problem related to file sizes greater then 2Gb. See the below filenames:
Consultoria.20210921.rar
Consultoria.20210924.rar
Develop.NET.2021.08.25.rar
Develop.NET.2021.08.27.rar
Develop.NET.20210922.rar
Develop.NET.20210923.rar
They are related to "backup" sets and I'm trying to run my application (OBAKE) on them. But when selecting each one separately, the option "OBAKE" (my app) does not appear in the context menu if the file > 2Gb - even appearing to other files following the same filename syntax.
I believe the attached video can be more concise to explain what is going on here.
To Reproduce
1- Create two files, one of them above 2Gb in size.
2- Try the context.
Expected behavior
The context menu to appear on all file size.
Screenshots
See the video attached
Environment
- OS: Windows
- Version 8.1 Pro 64 bits up to date.
Additional context
Follows my code within the XML
<menu name="OBAKE">
<icon path="C:\OBAKEv6\Obake6.exe" index="0" />
<menu name="Encrypt Files">
<icon path="C:\OBAKEv6\Obake6.exe" index="0" />
<visibility class="file" exists="C:\OBAKEv6\Obake6.exe" maxfolders="0" />
<validity class="file" exists="C:\OBAKEv6\Obake6.exe" maxfolders="0" inverse="pattern" pattern="*.obkf???;C:\OBAKEv6*"/>
<actions>
<property name="selection.multi.separator" value=";" />
<file path="${env.USERPROFILE}\obk.in" encoding="utf-8">${selection.path}</file>
<exec path="C:\OBAKEv6\Obake6.exe" arguments=""/ef" ${env.USERPROFILE}\obk.in" />
<property name="selection.multi.separator" value="${line.separator}" />
</actions>
</menu>
</menu>
I appreciate your time and efforts to build this library and any help on this problem.
Kindest regards,.