Thread overview
[Issue 8298] New: dirEntries special linux file in Home di
Jun 25, 2012
bioinfornatics
[Issue 8298] dirEntries special linux file in Home dir
Dec 22, 2012
Vladimir Panteleev
Feb 16, 2013
Mike Wey
June 25, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8298

           Summary: dirEntries special linux file in Home di
           Product: D
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: bioinfornatics@gmail.com


--- Comment #0 from bioinfornatics <bioinfornatics@gmail.com> 2012-06-25 11:17:25 PDT ---
when i use std.file.dirEntries it fail when scanning the home directory(linux)
because thay are some special files e.g:
Failed to stat file `./.pulse/b86d160eca2ebd0f61847c4600000013-runtime'

it will be good to have a way to list both files an dir in any case ...



import std.file;
import std.algorithm;
import std.stdio;
import std.path;
import std.array;

void main(){
    DirEntry[] dFiles = array( dirEntries( ".", SpanMode.depth ).filter!( ( a )
=>  a.name.extension == ".d"  ) );
    foreach( d; dFiles )
        writeln( d );
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 22, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8298


Vladimir Panteleev <thecybershadow@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |thecybershadow@gmail.com


--- Comment #1 from Vladimir Panteleev <thecybershadow@gmail.com> 2012-12-21 21:25:22 PST ---
How to create such a special file, in order to reproduce the problem?

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
February 16, 2013
http://d.puremagic.com/issues/show_bug.cgi?id=8298


Mike Wey <mike-wey@planet.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mike-wey@planet.nl


--- Comment #2 from Mike Wey <mike-wey@planet.nl> 2013-02-16 08:13:38 PST ---
The special file as an broken symlink. The Exception is thrown because stat return an error code in that case.

With this pull request: https://github.com/D-Programming-Language/phobos/pull/1142

I've changed ensureStatDone so it also tries lstat if stat fails as to support broken symlinks in DirEntry.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------