Re: [fpc-pascal] fpc-pascal Digest, Vol 181, Issue 19

2019-07-19 Thread Ingemar Ragnemalm
2019-07-19 kl. 12:00, "Mgr. Janusz Chmiel" wrote: To: fpc-pascal@lists.freepascal.org Subject: [fpc-pascal] I need some working Pascal examples for android Message-ID: Content-Type: text/plain; charset=UTF-8; format=flowed Please, does somebody of us know about some functioning examples which

[fpc-pascal] Warning: Symbol "faHidden" is not portable

2019-07-19 Thread James Richters
What does 'Warning: Symbol "faHidden" is not portable' mean exactly? I’m using it with FindFirst and FindNext, I'm just wondering if there is a better way of getting directory information that includes hidden and excludes hidden files in a better way that would not generate this warning. The

Re: [fpc-pascal] Warning: Symbol "faHidden" is not portable

2019-07-19 Thread wkitty42
On 7/19/19 7:45 AM, James Richters wrote: What does 'Warning: Symbol "faHidden" is not portable' mean exactly? I’m using it with FindFirst and FindNext, I'm just wondering if there is a better way of getting directory information that includes hidden and excludes hidden files in a better way t

Re: [fpc-pascal] Warning: Symbol "faHidden" is not portable

2019-07-19 Thread James Richters
I'm using Windows 10, but I may in the future want to make a Linux version of my program. I guess that's what the warning is about.. that fAHidden won't detect hidden files on some operating systems? James -Original Message- From: fpc-pascal On Behalf Of wkitt...@windstream.net Sent:

Re: [fpc-pascal] Warning: Symbol "faHidden" is not portable

2019-07-19 Thread geneb
On Fri, 19 Jul 2019, James Richters wrote: what OS? some OSes do not have hidden attribute like DOS and winwhatever... for example, on most *nix, they use dot files which are Both MS-DOS and Windows have hidden file attribute bits. g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - T

Re: [fpc-pascal] Warning: Symbol "faHidden" is not portable

2019-07-19 Thread Sven Barth via fpc-pascal
James Richters schrieb am Fr., 19. Juli 2019, 19:32: > I'm using Windows 10, but I may in the future want to make a Linux version > of my program. I guess that's what the warning is about.. that fAHidden > won't detect hidden files on some operating systems? > Correct. Regards, Sven > ___