Displaying 11 results from an estimated 11 matches for "simplefs".
Did you mean:
simplefb
2019 Jun 11
3
[R] Open a file which name contains a tilde
..., Jun 11, 2019 at 7:51 AM Frank Schwidom <schwidom at gmx.net> wrote:
> > >
> > > Hi,
> > >
> > > to get rid of any possible filename modification I started a little
> project to cover my usecase:
> > >
> > > https://github.com/schwidom/simplefs
> > >
> > > This is my first R package, suggestions and a review are welcome.
> > >
> > > Thanks in advance
> > > Frank Schwidom
> > >
> > > On 2019-06-07 09:04:06, Richard O'Keefe wrote:
> > > > How can expanding til...
2019 Jun 11
2
[R] Open a file which name contains a tilde
...t; > > >
> > > > Hi,
> > > >
> > > > to get rid of any possible filename modification I started a
> little
> > project to cover my usecase:
> > > >
> > > > [4]https://github.com/schwidom/simplefs
> > > >
> > > > This is my first R package, suggestions and a review are
> welcome.
> > > >
> > > > Thanks in advance
> > > > Frank Schwidom
> > > >
> > > > On 2019-06-07 09:04:...
2019 Jun 12
2
[R] Open a file which name contains a tilde
...t;
>>>> > > Hi,
>>>> > >
>>>> > > to get rid of any possible filename modification I started a
>>> little
>>>> project to cover my usecase:
>>>> > >
>>>> > > [4]https://github.com/schwidom/simplefs
>>>> > >
>>>> > > This is my first R package, suggestions and a review are
>>> welcome.
>>>> > >
>>>> > > Thanks in advance
>>>> > > Frank Schwidom
>>>> > >
>>>> > >...
2019 Jun 13
2
[R] Open a file which name contains a tilde
...> >
> > >>>> > > to get rid of any possible filename modification I started a
> > >>> little
> > >>>> project to cover my usecase:
> > >>>> > >
> > >>>> > > [4]https://github.com/schwidom/simplefs
> > >>>> > >
> > >>>> > > This is my first R package, suggestions and a review are
> > >>> welcome.
> > >>>> > >
> > >>>> > > Thanks in advance
> > >>>> > > Frank S...
2019 Jun 11
0
[R] Open a file which name contains a tilde
...widom at gmx.net>
> wrote:
> > >
> > > Hi,
> > >
> > > to get rid of any possible filename modification I started a little
> project to cover my usecase:
> > >
> > > [4]https://github.com/schwidom/simplefs
> > >
> > > This is my first R package, suggestions and a review are welcome.
> > >
> > > Thanks in advance
> > > Frank Schwidom
> > >
> > > On 2019-06-07 09:04:06, Richard O'Keefe wrote:
>...
2019 Jun 06
4
Open a file which name contains a tilde
On Wed, 5 Jun 2019 18:07:15 +0200
Frank Schwidom <schwidom at gmx.net> wrote:
> +> path.expand("a ~ b")
> [1] "a /home/user b"
> How can I switch off any file crippling activity?
It doesn't seem to be possible if readline is enabled and works
correctly.
Calls to path.expand [1] end up [2] in R_ExpandFileName [3], which
calls R_ExpandFileName_readline
2019 Jun 11
0
[R] Open a file which name contains a tilde
...gt;> > > Hi,
>>> > >
>>> > > to get rid of any possible filename modification I started a
>> little
>>> project to cover my usecase:
>>> > >
>>> > > [4]https://github.com/schwidom/simplefs
>>> > >
>>> > > This is my first R package, suggestions and a review are
>> welcome.
>>> > >
>>> > > Thanks in advance
>>> > > Frank Schwidom
>>> > >
>>>...
2019 Jun 12
0
[R] Open a file which name contains a tilde
...Hi,
> >>>> > >
> >>>> > > to get rid of any possible filename modification I started a
> >>> little
> >>>> project to cover my usecase:
> >>>> > >
> >>>> > > [4]https://github.com/schwidom/simplefs
> >>>> > >
> >>>> > > This is my first R package, suggestions and a review are
> >>> welcome.
> >>>> > >
> >>>> > > Thanks in advance
> >>>> > > Frank Schwidom
> >>>>...
2019 Jun 13
0
[R] Open a file which name contains a tilde
...> >>>> > > to get rid of any possible filename modification I started a
>> > >>> little
>> > >>>> project to cover my usecase:
>> > >>>> > >
>> > >>>> > > [4]https://github.com/schwidom/simplefs
>> > >>>> > >
>> > >>>> > > This is my first R package, suggestions and a review are
>> > >>> welcome.
>> > >>>> > >
>> > >>>> > > Thanks in advance
>> > >>&g...
2019 Jun 11
0
[R] Open a file which name contains a tilde
...g/
>
> Gabor
>
> On Tue, Jun 11, 2019 at 7:51 AM Frank Schwidom <schwidom at gmx.net> wrote:
> >
> > Hi,
> >
> > to get rid of any possible filename modification I started a little project to cover my usecase:
> >
> > https://github.com/schwidom/simplefs
> >
> > This is my first R package, suggestions and a review are welcome.
> >
> > Thanks in advance
> > Frank Schwidom
> >
> > On 2019-06-07 09:04:06, Richard O'Keefe wrote:
> > > How can expanding tildes anywhere but the beginning of a file...
2019 Jun 14
1
[R] Open a file which name contains a tilde
...between a string which is passed to the filesystem calls and some convenience expansion mechanisms.
But it is like it is. For my need I created a solution which takes strings unaltered and so I can fulfil my work.
And for whom who is interested in it, can take a look:
https://github.com/schwidom/simplefs
Suggestions are welcome.
Kind regards
Frank Schwidom
On 2019-06-12 12:50:12, John via R-help wrote:
> On Wed, 5 Jun 2019 18:07:15 +0200
> Frank Schwidom <schwidom at gmx.net> wrote:
>
> In reading file names, names with spaces require escaping of the
> spaces, and you are...