I decided to upload it to my hotmail sky drive.
Here is the link to download both programs/source-code:
http://cid-9ef1547dfcc25191.skydrive.live.com/self.aspx/Shared%20Programs/PureAutoExt.zip
The package contains executable for both LINUX(PAXCreator,PAXExtractor) and WINDOWS(PAXCreator.Exe ...
Search found 9 matches
- Mon Sep 14, 2009 7:28 am
- Forum: Announcement
- Topic: Linux/Windows Creator of Auto-Extractable archives
- Replies: 1
- Views: 2231
- Mon Sep 14, 2009 4:06 am
- Forum: Announcement
- Topic: Linux/Windows Creator of Auto-Extractable archives
- Replies: 1
- Views: 2231
Linux/Windows Creator of Auto-Extractable archives
Hi all! I've a program you'll find interresting. This program create auto-extractable archives using 32bit version of purebasic.
Truly is not only A PROGRAM but a suite. First you have a executable file that create the archives. Each archives are save with the ".pax" extension and include the ...
Truly is not only A PROGRAM but a suite. First you have a executable file that create the archives. Each archives are save with the ".pax" extension and include the ...
- Sat Sep 12, 2009 2:34 pm
- Forum: Coding Questions
- Topic: ReadFile() never exit on locked files
- Replies: 3
- Views: 2358
Re: ReadFile() never exit on locked files
Permission on the file are, when seen from the file properties:
-Owner: Read and Write
-Group: No access(for each groups)
-Others: No access
-Not set has been executable file.
Also using GetFileAttributes() it gave: 448.
Hope this will be helpful.
-Owner: Read and Write
-Group: No access(for each groups)
-Others: No access
-Not set has been executable file.
Also using GetFileAttributes() it gave: 448.
Hope this will be helpful.
- Sat Sep 12, 2009 6:43 am
- Forum: Coding Questions
- Topic: ReadFile() never exit on locked files
- Replies: 3
- Views: 2358
ReadFile() never exit on locked files
It seems that ReadFile() never return when the file we want to open is locked. I'm using PB4.31(x86) version on Ubuntu 9.04.
I'll explain. I'm writing an application which read files and add them to another file. I've tried it on my "Desktop" directory and it works fine. But once I try it on my ...
I'll explain. I'm writing an application which read files and add them to another file. I've tried it on my "Desktop" directory and it works fine. But once I try it on my ...
- Mon Aug 31, 2009 9:16 am
- Forum: Tricks 'n' Tips
- Topic: Scan a directory structure recursively without recursivity
- Replies: 14
- Views: 7260
- Mon Aug 31, 2009 5:52 am
- Forum: Tricks 'n' Tips
- Topic: Scan a directory structure recursively without recursivity
- Replies: 14
- Views: 7260
- Sun Aug 30, 2009 6:10 pm
- Forum: Tricks 'n' Tips
- Topic: Scan a directory structure recursively without recursivity
- Replies: 14
- Views: 7260
- Sun Aug 30, 2009 3:19 am
- Forum: Tricks 'n' Tips
- Topic: Scan a directory structure recursively without recursivity
- Replies: 14
- Views: 7260
- Sun Aug 30, 2009 2:33 am
- Forum: Tricks 'n' Tips
- Topic: Scan a directory structure recursively without recursivity
- Replies: 14
- Views: 7260
Scan a directory structure recursively without recursivity
I've just finished converting my delphi directory structure scan function.
Here is what it look like in PB. To be able to do this I add directories in a stack directory structure.
Here is the code:
;->Stack.pb
Structure TStackElement
*MptrData
*MptrNext.TStackElement
EndStructure
Structure ...
Here is what it look like in PB. To be able to do this I add directories in a stack directory structure.
Here is the code:
;->Stack.pb
Structure TStackElement
*MptrData
*MptrNext.TStackElement
EndStructure
Structure ...