Re: [Gambas-user] Load hidden file to variable?

2012-04-08 Thread sundar j
...@googlemail.comgt; Sent: Mon, 02 Apr 2012 21:28:00 To: sundar_...@rediffmail.com, mailing list for gambas users lt;gambas-user@lists.sourceforge.netgt; Subject: Re: [Gambas-user] Load hidden file to variable? On Mon, 02 Apr 2012, sundar j wrote: gt; Print Error is False for both if statement and file.load

Re: [Gambas-user] Load hidden file to variable?

2012-04-02 Thread nando
-- Original Message --- From: sundar j sundar_...@rediffmail.com To: Jussi Lahtinen jussi.lahti...@gmail.com Cc: mailing list for gambas users gambas-user@lists.sourceforge.net Sent: 2 Apr 2012 01:05:37 - Subject: Re: [Gambas-user] Load hidden file to variable? Ok. Ifound out the issue where

Re: [Gambas-user] Load hidden file to variable?

2012-04-02 Thread Benoît Minisini
Le 02/04/2012 03:05, sundar j a écrit : Ok. Ifound out the issue where it is. It seems to be associated with file extension. The file i want to load does not have any extension. So I created the same file with .txt extension inside the same hidden directory to see the result. This time it

Re: [Gambas-user] Load hidden file to variable?

2012-04-02 Thread sundar j
not have to edit the file. From: nando lt;nand...@nothingsimple.comgt; Sent: Mon, 02 Apr 2012 15:56:06 To: sundar_...@rediffmail.com, mailing list for gambas users lt;gambas-user@lists.sourceforge.netgt; Subject: Re: [Gambas-user] Load hidden file to variable? A hidden file IS hidden by default

Re: [Gambas-user] Load hidden file to variable?

2012-04-02 Thread tobi
On Mon, 02 Apr 2012, sundar j wrote: Print Error is False for both if statement and file.load function. I have checked file permission and it is root. I think file permission is not an issue here since it does not even detect file. Also i have tested the same with other file (root

Re: [Gambas-user] Load hidden file to variable?

2012-04-01 Thread sundar j
: Re: [Gambas-user] Load hidden file to variable? Why it doesn't work? It cannot find the file? Or does it give you error message? Jussi On Sat, Mar 31, 2012 at 18:36, sundar j lt;sundar_...@rediffmail.comgt; wrote: I need to load file to a variable which is residing in side a hidden folder

[Gambas-user] Load hidden file to variable?

2012-03-31 Thread sundar j
I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If Exist(~/.applicationtempfile/.hiddendir/file) = True Then search = File.Load(~/.applicationtempfile/.hiddendir/file) ... rest of coding ... However obove code does not work. Any help???

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread Sebi
, mailing list for gambas users gambas-user@lists.sourceforge.net Subject: [Gambas-user] Load hidden file to variable? I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If Exist(~/.applicationtempfile/.hiddendir/file) = True Then search

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread tobi
hi, On Sat, 31 Mar 2012, sundar j wrote: I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If Exist(~/.applicationtempfile/.hiddendir/file) = True Then search = File.Load(~/.applicationtempfile/.hiddendir/file) ... rest of coding

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread Jussi Lahtinen
Why it doesn't work? It cannot find the file? Or does it give you error message? Jussi On Sat, Mar 31, 2012 at 18:36, sundar j sundar_...@rediffmail.com wrote: I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If