@@ -3846,7 +3846,7 @@ else version (Windows)
3846
3846
3847
3847
this (return scope string path, return scope string prefix)
3848
3848
{
3849
- _prefix = prefix;
3849
+ _namePrefix = prefix;
3850
3850
this (path);
3851
3851
}
3852
3852
@@ -3857,7 +3857,7 @@ else version (Windows)
3857
3857
import std.datetime.systime : FILETIMEToSysTime;
3858
3858
import std.path : buildPath;
3859
3859
3860
- _prefix = prefix;
3860
+ _namePrefix = prefix;
3861
3861
3862
3862
fd.cFileName[$ - 1 ] = 0 ;
3863
3863
@@ -3873,7 +3873,7 @@ else version (Windows)
3873
3873
@property string name() const pure nothrow return scope
3874
3874
{
3875
3875
import std.string : chompPrefix;
3876
- return _name.chompPrefix(_prefix );
3876
+ return _name.chompPrefix(_namePrefix );
3877
3877
}
3878
3878
3879
3879
@property string nameWithPrefix() const pure nothrow return scope
@@ -3931,7 +3931,7 @@ else version (Windows)
3931
3931
3932
3932
private :
3933
3933
string _name; // / The file or directory represented by this DirEntry.
3934
- string _prefix ; // / A prefix to be chomped off the name (e.g. parent directories of an absolute path).
3934
+ string _namePrefix ; // / A prefix to be chomped off the name (e.g. parent directories of an absolute path).
3935
3935
3936
3936
SysTime _timeCreated; // / The time when the file was created.
3937
3937
SysTime _timeLastAccessed; // / The time when the file was last accessed.
@@ -3965,7 +3965,7 @@ else version (Posix)
3965
3965
{
3966
3966
import std.path : buildPath;
3967
3967
3968
- _prefix = prefix;
3968
+ _namePrefix = prefix;
3969
3969
3970
3970
static if (is (typeof (fd.d_namlen)))
3971
3971
immutable len = fd.d_namlen;
@@ -4005,7 +4005,7 @@ else version (Posix)
4005
4005
@property string name() const pure nothrow return scope
4006
4006
{
4007
4007
import std.string : chompPrefix;
4008
- return _name.chompPrefix(_prefix );
4008
+ return _name.chompPrefix(_namePrefix );
4009
4009
}
4010
4010
4011
4011
@property string nameWithPrefix() const pure nothrow return scope
@@ -4143,7 +4143,7 @@ else version (Posix)
4143
4143
}
4144
4144
4145
4145
string _name; // / The file or directory represented by this DirEntry.
4146
- string _prefix ; // / A prefix to be chomped off the name (e.g. parent directories of an absolute path).
4146
+ string _namePrefix ; // / A prefix to be chomped off the name (e.g. parent directories of an absolute path).
4147
4147
4148
4148
stat_t _statBuf = void ; // / The result of stat().
4149
4149
uint _lstatMode; // / The stat mode from lstat().
0 commit comments