View source code
							
							
						
								Display the source code in std/file.d from which this
								page was generated on github.
							
						
							Report a bug
							
						
								If you spot a problem with this page, click here to create a
								Bugzilla issue.
							
						
							
								Improve this page
							
							
					
								Quickly fork, edit online, and submit a pull request for this page.
								Requires a signed-in GitHub account. This works well for small changes.
								If you'd like to make larger changes you may want to consider using
								local clone.
							
						Struct std.file.DirEntry
Info on a file, similar to what you'd get from stat on a POSIX system.
						
				struct DirEntry
				;
						
					
				Constructors
| Name | Description | 
|---|---|
| this() | Constructs a DirEntryfor the given file (or directory). | 
Properties
| Name | Type | Description | 
|---|---|---|
| attributes[get] | uint | Returns the attributes of the file represented by this DirEntry. | 
| isDir[get] | bool | Returns whether the file represented by this DirEntryis a
            directory. | 
| isFile[get] | bool | Returns whether the file represented by this DirEntryis a file. | 
| isSymlink[get] | bool | Returns whether the file represented by this DirEntryis a
            symbolic link. | 
| linkAttributes[get] | uint | On POSIX systems, if the file represented by this DirEntryis a
            symbolic link, thenlinkAttributesare the attributes of the
            symbolic link itself. Otherwise,linkAttributesis identical toattributes. | 
| name[get] | string | Returns the path to the file represented by this DirEntry. | 
| size[get] | ulong | Returns the size of the file represented by this DirEntryin bytes. | 
| statBuf[get] | core | This function is POSIX-Only. | 
| timeCreated[get] | SysTime | This function is Windows-Only. | 
| timeLastAccessed[get] | SysTime | Returns the time that the file represented by this DirEntrywas
            last accessed. | 
| timeLastModified[get] | SysTime | Returns the time that the file represented by this DirEntrywas
            last modified. | 
| timeStatusChanged[get] | SysTime | This function is POSIX-Only. | 
Authors
License
					Copyright © 1999-2024 by the D Language Foundation | Page generated by ddox.