more ~master (2021-04-25T17:22:00Z)
Home
Dub
Repo
fileQueryTemplate.FileInfo
filequery
fileQueryTemplate
Undocumented in source.
struct
FileInfo
template
fileQueryTemplate
(Policy)
struct
FileInfo {
version(Windows)
static if
(
useGetFileAttributes
)
DWORD
getFileAttributesResult
;
version(!Windows)
static if
(
useStat
)
stat_t
statbuf
;
version(!Windows)
static if
(
useStat
)
static if
(
saveStatSucceeded
)
bool
statSucceeded
;
static if
(
supportOp("exists")
)
bool
exists
[@property getter];
static if
(
supportOp("isFile")
)
bool
isFile
[@property getter];
}
auto
query
(FileInfo* outInfo, R name)
Members
Properties
exists
bool
exists
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
isFile
bool
isFile
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
getFileAttributesResult
DWORD
getFileAttributesResult
;
Undocumented in source.
statSucceeded
bool
statSucceeded
;
Undocumented in source.
statbuf
stat_t
statbuf
;
Undocumented in source.
Meta
Source
See Implementation
filequery
fileQueryTemplate
functions
query
querySymlink
manifest constants
saveStatSucceeded
useGetFileAttributes
useStat
structs
FileInfo