class
#include <Base/include/Framework/IO/File.hpp>
File Contents
Cross platform file utilities
Constructors, destructors, conversion operators
Public functions
- auto HasAccess(fint type) const -> bool
- auto Exists() const -> bool
- auto IsHidden() const -> bool
- auto IsDirectory() const -> bool
- auto GetSizeBytes() const -> uint64
- auto Delete() -> bool
- auto Hide(bool flag) -> bool
-
auto ListFiles() const -> collection::
List<File> - auto CreateDir() -> bool
- auto CopyTo(const File& dst, bool overwrite = false) -> bool
- auto MoveTo(const File& dst) -> bool
- auto Path() const -> const String&
- auto PlatformPath() const -> const String&
- auto operator+(const File& other) const -> File
- auto operator+(const String& other) const -> File
- auto GetParent() const -> File
- auto GetAbsolutePath() const -> File
- auto Name() const -> const String&
- auto Extension() const -> const String&
- auto operator==(const File& other) const -> bool
- auto operator!=(const File& other) const -> bool
Function documentation
bool bpf:: io:: File:: Exists() const
Returns | true if the file exists, false otherwise |
---|
Checks if the file exists
bool bpf:: io:: File:: IsHidden() const
Returns | true if the file is hidden, false otherwise |
---|
Checks if the file is a hidden file
bool bpf:: io:: File:: IsDirectory() const
Returns | true if the file is a directory (or folder on Windows), false otherwise |
---|
Checks if the file is a directory (or folder on Windows)
uint64 bpf:: io:: File:: GetSizeBytes() const
Returns | size in bytes as unsigned |
---|---|
Exceptions | |
IOException | in case of system error |
Returns the size in bytes of that file
bool bpf:: io:: File:: Delete()
Returns | true if the operation succeeded, false otherwise |
---|
Deletes this file from the file system
bool bpf:: io:: File:: Hide(bool flag)
Parameters | |
---|---|
flag | true to hide the file, false to make the file visible |
Returns | true if the operation succeeded, false otherwise |
Marks this file as hidden to the current platform
collection:: List<File> bpf:: io:: File:: ListFiles() const
Returns | the output list of files (including directories/folders) |
---|---|
Exceptions | |
IOException | in case of system error |
Lists all files in that directory/folder (of course if this file is a directory/folder)
bool bpf:: io:: File:: CreateDir()
Returns | true if the operation succeeded, false otherwise |
---|
Creates the directory/folder
bool bpf:: io:: File:: CopyTo(const File& dst,
bool overwrite = false)
Parameters | |
---|---|
dst | the destination file or directory/folder |
overwrite | true to overwrite any existing file, false otherwise |
Returns | true if operation succeeded, false otherwise |
Copies this file to the destination, in case destination is a directory/folder, copy in that directory/folder under the same name
const String& bpf:: io:: File:: PlatformPath() const
Returns | immutable high-level string |
---|
Returns the path as expected by platform conventions
File bpf:: io:: File:: GetAbsolutePath() const
Returns | new File |
---|---|
Exceptions | |
IOException | in case of system error |
Returns the absolute path constructed from this path, That means a path that starts from system's root (usually '/...' on linux and 'C:\' on Windows)
bool bpf:: io:: File:: operator==(const File& other) const
Parameters | |
---|---|
other | operand |
Returns | true if this equals other, false otherwise |
Compare File
bool bpf:: io:: File:: operator!=(const File& other) const
Parameters | |
---|---|
other | operand |
Returns | true if this does not equal other, false otherwise |
Compare File