feat: easier filesystem access #13
Labels
No labels
Blocked
ByBug
Blocked
ByDependency
Blocked
ByMissingFeature
Bug
Accepted
Bug
Fixed
Bug
In Progress
Bug
Invalid
Bug
ItWorksOnMyMachine
Bug
MoreInvestigation
Bug
New
Empty
FeatureRequest
Accepted
FeatureRequest
Implemented
FeatureRequest
In Progress
FeatureRequest
Invalid
FeatureRequest
New
FeatureRequest
PartiallyImplemented
FeatureRequest
WontAdd
Important
PR
BranchMerge
PR
BugFix
PR
Documentation
PR
FeatureAddition
PR
Miscellaneous
PR
Mixed
PR
New
PR
Tests
PR
Update
Roadmap
Stale
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Reference: StarOpenSource/Engine#13
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Feature description
I want an even simpler way for accessing and manipulating files. Java's built-in methods require more manual work, are scattered across various classes and are sometimes a bit confusing. Putting everything into one class with a simple API would greatly improve the developer experience if done correct.
Feature implementation
I'd propose creating one class for accessing files. Each instance represents one file or directory.
Feature alternatives
No response
Removing the need for
File.separator
and instead using slashes for traversing paths and replacing them with whateverFile.separator
is would be a nice thing. Also providing some default paths, like a home or cache directory would be a great addition.Added in
ed1c8b9d3e
and0966a43d5e
.